-
-
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 s
mapping for EasyMotion to any surrounding word
#1741
Comments
I'm thinking that Easymotion might be another good target for neovim integration. I'd rather not reimplement the entirety of EasyMotion again... I've opened up an issue here to ask about it: easymotion/vim-easymotion#331 |
@Chillee right now you can't seem to get Neovim to do the easymotion thing, can you? Unless I'm mistaken. |
@fourcolors Correct. EasyMotion does a bunch of hacks that make it difficult to integrate. @MaxfieldWalker has been on a tear implementing new EasyMotion features, so you might want to check some of the new features he's implemented out and see if they cover some of your use cases. |
@fourcolors You can now map a single character to a easymotion action in the latest version of the extension with configuration like below. "vim.otherModesKeyBindingsNonRecursive": [
{
"before": [
"s"
],
"after": [
"<leader>",
"<leader>",
"2",
"s"
]
}
] |
@MaxfieldWalker Is it possible to make Basically, I just type Also, search doesn't seem to search the whole file? |
basically i'm looking for this mapping |
@fourcolors Unfortunately, bidirectional word motion is not supported so far, but it is easy to implement this, so I will work it on 👍 Basically search is done over the entire file, but the length of characters used for label name are 28, so 784(=28x28) labels shown at most. |
@fourcolors Is this still an issue?
This can already be done with |
The VSCodeVim team prioritizes issues based on reaction count.
FEATURE REQUEST (choose one):
Environment:
Request:
I would REALLY like to map my
s
key to search forward AND backwards. I should be able to jump to any word and LINE BREAKS (please start including \n like normal EasyMotion does) with two-three characters.I am currently using easymotion with VIM and this is a huge deal for me and a lot of people I know.
The text was updated successfully, but these errors were encountered: