-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
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
Allow for quickpick commandline usage #2781
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -597,6 +597,25 @@ Are you on a Mac? Did you go through our [mac-setup](#mac-setup) instructions? | |
|
||
Press `shift+<esc>` to close all of those boxes. | ||
|
||
### How can I use the commandline when in Zen mode or when the status bar is disabled? | ||
|
||
This extension registers a command pallete of visual studio code exists to show a quickpick version of the commandline. This can be remapped as follows in visual studio keybindings.json settings file. | ||
``` | ||
{ | ||
"key": "shift+;", | ||
"command": "vim.showQuickpickCmdLine", | ||
"when": "editorTextFocus && vim.mode != 'Insert'" | ||
} | ||
``` | ||
Or for Zen mode only: | ||
``` | ||
{ | ||
"key": "shift+;", | ||
"command": "vim.showQuickpickCmdLine", | ||
"when": "inZenMode && vim.mode != 'Insert'" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. When and where is this context variable being set? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oh, cool. |
||
} | ||
``` | ||
|
||
## Contributing | ||
|
||
This project is maintained by a group of awesome [people](https://github.com/VSCodeVim/Vim/graphs/contributors) and contributions are extremely welcome :heart:. For a quick tutorial on how you can help, see our [contributing guide](/.github/CONTRIBUTING.md). | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix grammar in this sentence