keyboard shortcuts - Disable Shift+Delete Cutting in Visual Studio -


i type fast. times when programming select line shift+end , press delete key, finger hasn't come off of shift key. results in replacing clipboard item selected.

this bad because many times deleting code before pasting other code.

apparently shift+del old school way of cutting.

i aware of ctrl+shift+v cycling through clipboard history in visual studio, still terribly annoying.

is there way disable shortcut in visual studio or windows in general?

the keyboard shortcuts pretty thoroughly customizable in visual studio.

go tools > options in left select environment > keyboard

select command, select shortcut want remove, click "remove" , click "ok"

enter image description here

if wanted circumvent across windows, can use one-line autohotkey script convert shift+delete plain delete:

+delete::sendinput,{delete} 

Comments

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -