-
-
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
An option to show the colon at the start of the command line box #2064
Conversation
Use the normal selection in insert mode. This fixes VSCodeVim#1951. Selection in insert mode seems to be specific to this plugin and is not easily possible in normal Vim.
…ert-mode Bugfix VSCodeVim#1951: text selection in insert mode
I would like to have it set to false by default as to not confuse our current userbase. Also can you add this to the README.md settings area, thanks! |
…-unneeded-code removed code which is not needed anymore due to VSCodeVim#2062
…lers Dispose modehandler if NO documents match the modehandler document anymore
Sorry about that, was being stupid. Or just tired. |
Hmm the merge still doesn't look right...can you try again please? Github lets me squash and merge which I can do at the end once it is ready to go |
What do you mean? It merges fine for me now. Have I messed something up? |
package.json
Outdated
@@ -550,7 +550,11 @@ | |||
"vim.cmdLineInitialColon": { | |||
"type": "boolean", | |||
"description": "When typing a command show the initial colon ':' character", | |||
<<<<<<< HEAD |
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.
Can you fix these merge conflicts?
src/configuration/configuration.ts
Outdated
@@ -328,7 +328,11 @@ class ConfigurationClass { | |||
/** | |||
* When typing a command show the initial colon ':' character | |||
*/ | |||
<<<<<<< HEAD |
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.
Unresolved merge conflicts
you didn't modify extension.ts yet it shows up in the diff... |
I'm sorry, I'm not following. Those snippets seem to me to be from an older commit, not the most recent one. The most recent one really doesn't conflict for me with the master. So at the moment I'm not sure what it is that I should fix. |
squashed it and it looks good, thanks for the contribution! |
Thanks! |
sure that sounds good to me! |
Just a simple option to show the colon character at the start of the command line box.
Something I've been missing from vim itself, maybe others would find this useful too. If set to false the behavior should be the same like now.
I find it helps distinguish the vim command line with the command palette and the file search boxes.