linux反序排列⽂件,关于linuxvim命令总结
第 11 页 反序排列的⽅法:
反序排列的⽅法:
⾸先到要反序的第⼀⾏,⽤mt标注当前位置,然后到要替换的反序的最后⼀⾏,输⼊命令:'t+1,.g/^/m 't 可以⽤.范围(global默认是%)然后编辑反射这样就可以挑出想要的内容,还可以不确定范围⽤0代替 't将对整个⽂件进⾏反序
挑选⽂本的⽅法:
:map :.g/^/co 'p :normal 需要⾸先⽤mp定义p的位置
6.配⾊⽅案:
命令:
:syntax on      打开语法⾼亮
:syntax clear      清楚当前的语法⾼亮
:syntax off      关闭语法⾼亮
:syntax manual      将⾼亮模式设置为⼿动
:set syntax=ON      设置以上选项后,⽤这个命令开启语法⾼亮
:filetype on      打开⽂件类型检测
:set filetype      设置当前⽂件类型
:plugin on      使⽤⽂件类型插件
:indent on      打开⽂件类型⾃动缩进
:set background      ⼿动配置背景⾊(VIM⼀般会⾃动推断终端的背景⾊) 此命令必须放置在 :syntax enable 前 否则不起作⽤
linux使用vim编辑文件:syntax reset      vim重新设置默认颜⾊
:runtime syntax/colortest.vim      查看配⾊⽅案的实例
:colorscheme      选择配⾊⽅案
:colorscheme mine      ⼀直使⽤⾃⼰的配⾊⽅案
CTRL-L      重绘VIM的屏幕
配⾊⽅案⽂件中的关键字及作⽤:
配⾊⽅案的路径:$VIMRUNTIME/colors  ~/.vim/colors
term attributes in a B&W terminal
cterm attributes in a color terminal
ctermfg foreground color in a color terminal
ctermbg background color in a color terminal
gui attributes in the GUI
guifg foreground color in the GUI
guibg background color in the GUI
可以这样设置:highlight Comment ctermfg=green guifg=green

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。