Vim的随记

来自三线的随记
Admin讨论 | 贡献2022年8月7日 (日) 22:40的版本

vim command

line number

:set number
:set nu
:set nonu
:set nonumber


highlight search

:set hlsearch
:set nohlsearch
Clear highlight until next search
:noh


indent

:set autoindent
:set noautoindent


tab

:set expantab
:set tabstop=4

在xshell+vim中使用mouse (支持光标定位和滚动屏幕)

以往在ubuntu中,如果想在编辑文件的时候使用鼠标通常设置

:set mouse=a

就好了

但是在centos的时候单纯设置mouse仿佛没效果,对比set参数发现

:set ttymouse=xterm2

就ok了