We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
May I know what's the keyboard shortcut for calling function list? Thanks.
Like below picture, click the function name in status bar.
Then below function list will appear here.
The text was updated successfully, but these errors were encountered:
We never added an external command or keybinding for that, but you can add one yourself by modifying the package.json file in the root of the extensions folder by replacing lines: { "command": "C_Cpp.SwitchHeaderSource", "title": "C/Cpp: Switch Header/Source" } ], "keybindings": [ { "command": "C_Cpp.SwitchHeaderSource", "key": "Alt+O", "when": "editorTextFocus" } ], with { "command": "C_Cpp.SwitchHeaderSource", "title": "C/Cpp: Switch Header/Source" }, { "command": "C_Cpp.Navigate", "title": "C/Cpp: Navigate" } ], "keybindings": [ { "command": "C_Cpp.SwitchHeaderSource", "key": "Alt+O", "when": "editorTextFocus" }, { "command": "C_Cpp.Navigate", "key": "Alt+F2", "when": "editorTextFocus" } ],.
{ "command": "C_Cpp.SwitchHeaderSource", "title": "C/Cpp: Switch Header/Source" } ], "keybindings": [ { "command": "C_Cpp.SwitchHeaderSource", "key": "Alt+O", "when": "editorTextFocus" } ],
{ "command": "C_Cpp.SwitchHeaderSource", "title": "C/Cpp: Switch Header/Source" }, { "command": "C_Cpp.Navigate", "title": "C/Cpp: Navigate" } ], "keybindings": [ { "command": "C_Cpp.SwitchHeaderSource", "key": "Alt+O", "when": "editorTextFocus" }, { "command": "C_Cpp.Navigate", "key": "Alt+F2", "when": "editorTextFocus" } ],
We'll add that in a future version.
Sorry, something went wrong.
We added an ALT+N keybinding in v.0.11.0 to open up this list.
@sean-mcmanus, @bobbrow, Thanks very much for your effort. 👍
No branches or pull requests
May I know what's the keyboard shortcut for calling function list? Thanks.
Like below picture, click the function name in status bar.
Then below function list will appear here.
The text was updated successfully, but these errors were encountered: