Eclipse’s Ctrl+click in Visual Studio?
If you use Visual Studio 2010, you can use the free Visual Studio 2010 Productivity Power Tools from Microsoft to achieve this.
If you use Visual Studio 2010, you can use the free Visual Studio 2010 Productivity Power Tools from Microsoft to achieve this.
Just want to add to the discussion, If you set: “window.zoomLevel”: “your number”, In my case I started with zero, you can use that as sort of a baseline: “editor.fontSize”: 14, “editor.tabSize”: 2, “terminal.integrated.fontSize”: 14, “window.zoomLevel”: 0, “[Log]”: { “editor.fontSize”: 14 }, And then tweaked until I was happy. E.g. you want to increase the … Read more
Try Alt + ← that will go backward in history – if tab is closed it will reopen it.
I ran into the same issue and resolved it by first resetting my Visual Studio keyboard mappings: Tools > Options > Keyboard > Reset Then going into the ReSharper options and applying the scheme: Resharper > Options > Visual Studio Integration > Apply Scheme Update: For VS2017 onwards: Tools > Options > Environment > Keyboard … Read more
The correct command editor.action.quickFix. The default binding on Windows looks like this: { “key”: “ctrl+.”, “command”: “editor.action.quickFix”, “when”: “editorTextFocus” } On Mac it’s CMD + ..
The term you want to google for is: “readline arguments” This will lead to, for example, this chapter from the bash reference manual: You can pass numeric arguments to Readline commands. Sometimes the argument acts as a repeat count, other times it is the sign of the argument that is significant. If you pass a … Read more
I know this is a little late answer, but I hope anyone who looks this question get helped. In PhpStorm, almost everything can be configured but a little tricky and takes some learning curve. It’s very common behaviour that select a word and type single quote (or double quote) to surround it. Hello World ‘Hello … Read more
In Visual Studio 2013 and later there is a default keyboard shortcut for this: Ctrl+K, Ctrl+O (You will need to hold down Ctrl and type ko and then release Ctrl) In earlier versions, see: Visual Studio Macro to switch between CPP and H files or Open Corresponding File in Visual Assist
From the ViM manual: 5. Replace mode *Replace* *Replace-mode* *mode-replace* Enter Replace mode with the “R” command in normal mode. Of course you can map any key to R, for example by doing :map <F5> R
In Visual Studio 2013 and later, this functionality is built in. ALT + UP/DOWN will move a line up or down. If you need this functionality in VS2012 (works with VS2010 too), take a look at the MoveLine Visual Studio Extension or the Productivity Power Tools suite.