Created
October 6, 2016 08:47
-
-
Save tuchangwei/c0996c5df90cf923452601b3b51890df to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
~ 将光标下的字母改变大小写 | |
3~ 将光标位置开始的3个字母改变其大小写 | |
g~~ 改变当前行字母的大小写 | |
U 将可视模式下选择的字母全改成大写字母 | |
u 将可视模式下选择的字母全改成小写 | |
gUU 将当前行的字母改成大写 | |
3gUU 将从光标开始到下面3行字母改成大写 | |
guu 将当前行的字母全改成小写 | |
gUw 将光标下的单词改成大写。 | |
guw 将光标下的单词改成小写。 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment