How can I avoid Keydown triggering twice on CTRL+V?

How can I avoid Keydown triggering twice on CTRL+V?

I have added the keyup listener to a input field (textbox) like this:

jQuery('#input_guideName').keyup(function(e) { alert('yo'); });

My problem is that the alert is triggered twice when I paste text, because CTRL+V is two key pressed.
But I really need this to be handled as one 'keyup'.

How can I solve this problem?