As this question is for the "big" Visual Studio and Resharper, I'd like to see that feature in VS Code too.
Scrolling through the shortcut list for VS Code, I couldn't find it but I'm hoping that it's still there but called something less intuitive than camel, hump or such.
Open the Default Keyboard Shortcuts (File > Preferences > Keyboard Shortcuts) and search for "suggest".
VS Code supports multiple cursors for fast simultaneous edits. You can add secondary cursors (rendered thinner) with Alt+Click. Each cursor operates independently based on the context it sits in. A common way to add more cursors is with Shift+Alt+Down or Shift+Alt+Up that insert cursors below or above.
If IntelliSense is not working as it should on your Windows 11/10 PC, you can try restarting VS Code and this should solve the issue. Restarting the program can be really effective and time saving in some cases. If the issue persists, you can try restarting your computer altogether.
As of version 1.25 these commands are built in:
I found this extensions to work https://marketplace.visualstudio.com/items?itemName=ow.vscode-subword-navigation
Funny thing is that you need to configure each combination separately:
{ "key": "alt+left", "command": "subwordNavigation.cursorSubwordLeft", "when": "editorTextFocus" }, { "key": "alt+right", "command": "subwordNavigation.cursorSubwordRight", "when": "editorTextFocus" }, { "key": "alt+shift+left", "command": "subwordNavigation.cursorSubwordLeftSelect", "when": "editorTextFocus" }, { "key": "alt+shift+right", "command": "subwordNavigation.cursorSubwordRightSelect", "when": "editorTextFocus" }, { "key": "alt+backspace", "command": "subwordNavigation.deleteSubwordLeft", "when": "editorTextFocus" }, { "key": "alt+delete", "command": "subwordNavigation.deleteSubwordRight", "when": "editorTextFocus" }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With