Instead of using w to jump to the beginning of the next word or using e to jump to the end of the next word I want to have a shortcut which jumps to the next whitespace between words.
相关问题
- Emacs shell: save commit message
- How to change the first two uppercase characters o
- Insert text into current buffer from function
- Hot reload on save
- Substituting zero-width match in vim script
相关文章
- 如何让 vim 支持 .cshtml 文件的代码高亮
- Auto-save in VIM as you type
- How can I use gcc's -I command to add recursiv
- Vim: overloaded mapping for multiple modes
- How to use relative line numbering universally in
- How to copy the value of a vim option to a registe
- E185: Cannot find color scheme*
- How do I fix vim to properly indent folds containi
:help f
and:help t
for that./[[:space:]]
or/\s
if you want to also match tab.Following a suggested edit that was rejected, here is how to do it backwards (jump to previous space):
:help F
and:help T
for that.?[[:space:]]
or?\s
if you want to also match tab.On the same line :
fSpace will work.
Generally, f+
<char>
allows you to jump on the next character on the same line.See
:help f
for more information.as mentioned: you can use
f
and thenSpace
but then use;
to hop to all the remaining spaces. My sequence is then often:f<Space>;;;;
The semicolon is a repetition for the f-key (find char in Line)