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"
if wanted circumvent across windows, can use one-line autohotkey script convert shift+delete plain delete:
+delete::sendinput,{delete}
Comments
Post a Comment