-
-
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
Support for Wildfire (visual selection expansion using text objects) #2834
Comments
did you try our keybinding of You can rebind something else to af if that makes you more comfortable as well |
@xconverge Wow! That was easy, you should add it to the readme! "vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["enter"],
"after": ["v", "a", "f"],
}
],
"vim.visualModeKeyBindingsNonRecursive": [
{
"before": ["enter"],
"after": ["a", "f"],
}
] The only other powerful feature lacking here is then, having custom rules for text object expansions per language. For example in Erlang I expand inside But now I am invested, I think I am going to have a read through how this all works. This project has come along way! |
@expelledboy I think it is, what do you think is missing there? https://github.com/VSCodeVim/Vim#-vscodevim-tricks If necessary it's possible to write more detailed docs for it. |
@Zyst My bindings with If anyone could point me to where its implemented I would appreciate it! |
Is there any command that support select Inside block? for the example below
I would like to select baz instead of 'baz' |
Yes, is it possible to get |
Is there a way to Reduce the selection? If you've accidentally pressed |
FYI, I use https://github.com/jhasse/vscode-bracket-select the plugin {
"before": [
"enter"
],
"commands": [ "bracket-select.select" ],
// "after": [
// "v",
// "a",
// "f"
// ]
}, |
Amazing! Thanks @d1y, perhaps I can modify this code to be customizable. |
Hey guys, love the idea of using vim in vscode!
Would it be possible atm to implement something similar to vim's wildfire plugin? It expands the visual selection according to next recognized text objects, searching in order of a configurable list.
I use it so much I actually cant use vim anywhere that doesn't support it, just breaks my concentration.
The text was updated successfully, but these errors were encountered: