How to return Delphi default behavior in CTRL + Shift + V when CNPack is installed

I use Delphi XE, but the same question already bothered me when using Delphi 2007. When CNPack IDE wizards are installed, pressing CTRL + Shift + V changes the default functionality.

Usually a local variable is automatically created. CNPack changes this to move the cursor to the var section of the current method.

How can I prevent CNPack from doing this?

+6
source share
1 answer

try it

  • go to CnPack / Code Editor Wizard / Options
  • Find the Toggle Var Field Tool in the Editor Tools grid
  • change the shortcut or disable the tool using Enable this tool .
+11
source

Source: https://habr.com/ru/post/899604/


All Articles