项目作者: ap

项目描述 :
Make cw consistent with dw, yw, et al
高级语言: Vim script
项目地址: git://github.com/ap/vim-you-keep-using-that-word.git
创建时间: 2014-05-31T02:15:01Z
项目社区:https://github.com/ap/vim-you-keep-using-that-word

开源协议:MIT License

下载


You Keep Using That Word

A tiny little plugin for Vim

When using word motion with the c command, it does not mean what Vim normally
thinks it means. As the documentation says:

Special case: When the cursor is in a word, cw and cW do not include the
white space after a word, they only change up to the end of the word. This is
because Vim interprets cw as change-word, and a word does not include the
following white space.

But you can already do the same yourself by using ce and cE, whereas this
supposedly helpful exception leaves you using workarounds such as cf<Space>
in order to do what you normally would use cw or cW for.

This plugin removes the special exception from cw/cW. It does nothing else,
and it has no configuration options.

Credits

Thanks to Josh Howe (@joshtch) for pointing out my omission of the WORD motion
in the initial release of this plugin.