Is there a way to enable camel burning through method names in VS Code?

As this question is for the "big" Visual Studio and Resharper, I would also like to see this feature in VS Code.

Scrolling through the list of shortcuts for VS Code, I could not find it, but I hope that it is still there, but it caused something less intuitive than a camel, a hump or such.

+4
source share
1 answer

I found that these extensions work https://marketplace.visualstudio.com/items?itemName=ow.vscode-subword-navigation

It's funny 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"
}
+3

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


All Articles