We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
注:(摘自《鸟哥的Linux私房菜》)
一般模式 --i|o(新增一行)|a(插入)|R(替换)--> 编辑模式 --ESC--> 一般模式
一般模式 --:|/|?--> 命令行模式 --ESC--> 一般模式
使用vim file1 file2开始多文件编辑
vim file1 file2
在命令行模式输入:sp[filename]即可打开多个窗口,输入filename则会打开另一个文件,否则只是切割当前文件。
:sp[filename]
注:这里所有的组合键都是先按住ctrl再按w然后再按下最后一个。
配置文件:vim ~/.vimrc
vim ~/.vimrc
详细配置后续补上。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
注:(摘自《鸟哥的Linux私房菜》)
vim的三种模式:
一般模式 --i|o(新增一行)|a(插入)|R(替换)--> 编辑模式 --ESC--> 一般模式
一般模式 --:|/|?--> 命令行模式 --ESC--> 一般模式
常用快捷键
块选择
多文件编辑
使用
vim file1 file2
开始多文件编辑多窗口
在命令行模式输入
:sp[filename]
即可打开多个窗口,输入filename则会打开另一个文件,否则只是切割当前文件。注:这里所有的组合键都是先按住ctrl再按w然后再按下最后一个。
vim设置
配置文件:
vim ~/.vimrc
详细配置后续补上。
The text was updated successfully, but these errors were encountered: