It's not possible to use easymotion?
Open
Nobody has claimed this yet.
area/plugin
- Dominant language
- TypeScript
- Stars
- 15.2k
- Forks
- 1.5k
- Avg merge
- 3d 18h
- Merged PRs (30d)
- 6
Description
When typing bdw
the command is interpreted as jump to all words before, and then choose d.
It should be that it just highlights all the word beginnings.
This works:
"vim.normalModeKeyBindings": [
{
"before": ["f"],
"after": ["<leader>", "<leader>", "<leader>", "j"]
}
]
However this does not:
"vim.normalModeKeyBindings": [
{
"before": ["f"],
"after": ["<leader>", "<leader>", "<leader>", "b","d","w"]
}
]
I also tried with the bdw in one box, but that doesn't work either
"vim.normalModeKeyBindings": [
{
"before": ["f"],
"after": ["<leader>", "<leader>", "<leader>", "bdw"]
}
]
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
No source file or test is named. Start by reproducing the issue with the shown vim.normalModeKeyBindings configurations, comparing the working j mapping with the bdw mapping. Trace how multi-key after sequences and are interpreted; done means the bdw mapping highlights all word beginnings as described.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- typescript, vscode
- Domain
- developer-experience, tooling
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100