最新消息:

2022年08月的内容

vim

set synmaxcol=600

niuge678 2年前(2022-08-05) 490浏览 0评论

作用 " https://superuser.com/questions/302186/vim-scrolls-very-slowly-when-a-line-is-too-long " Syntax coloring lines...

vim

vim: filetype plugin indent on

niuge678 2年前(2022-08-05) 1063浏览 0评论

文件类型检测 filetype on filetype plugin on filetype indent on 以上三个参数,可以写成一行filetype plugin indent on。 命令 :filetype 查看Vim的文件类型检测功能是...

vim

vim: tab切换使用leader键

niuge678 2年前(2022-08-04) 464浏览 0评论

作用 1、当你按下 逗号+1,相当于按了 1gt,切换到第一个tab上。 解释 " <Leader>[1-9] move to tab [1-9] " from: https://github.com/liucheng...

未分类

sed: 修改导致软链接失效

niuge678 2年前(2022-08-04) 380浏览 0评论

因工作需要,我使用sed命令修改了/etc/rc.local文件,导致软链接文件/etc/rc.local失效,上网搜索了下,查明了原因 我所使用的sed语句 #删除/etc/rc.local中iptables相关语句 sed -i '/i...

vim

vim: hlsearch

niuge678 2年前(2022-08-03) 461浏览 0评论

set hlsearch 始终高亮 set nohlsearch 回车后,高亮就没有了 取消高亮 nmap <leader>hl :let @/ = ""<CR> 1、:let一个普通变量,:set一个vi...

vim

vim: ignorecase and smartcase

niuge678 2年前(2022-08-03) 583浏览 0评论

set ignorecase 忽略大小写 set smartcase ignorecase 将强制 Vim 忽略大小写。但是,如果搜索关键词中只要有大写字母,smartcase 将使 Vim 再次变为区分大小写。 注意:如果要启用 smartcase...