vi / vim show line number command To display line numbers along the left side of a window, type any one of the following: :set number or :set nu You can also define a mapping to toggle the option, for example: :nmap <C-N><C-N> :set invnumber<CR> By pressing Ctrl-N twice in...
let NERDTreeAutoCenter=1 "自动调整焦点 let NERDTreeShowFiles=1 "显示文件 let NERDTreeShowLineNumbers=1 "显示行号 let NERDTreeHightCursorline=1 "高亮当前文件 let NERDTreeShowHidden=0 "显示隐藏文件 let NERDTreeMinimalUI=0 "不显示'Bookmarks' label 'Press ? for help' let NERDTreeWinSize=31 "窗口宽...
set number # show line number set noswapfile # disable the swapfile set hlsearch # highlight the search set ignorecase # ignore case in search set incsearch # show search results as you type 重映射 CAPSLOCK:这不是 VIM 的配置,CAPSLOCK 可以说是键盘上最没用的按键,建议映射为 ESC 或者 Ctrl。
$vi+/addUser\(arg1\) initlib.c http://www.cyberciti.biz/faq/vi-show-line-numbers/
Show 2 more comments 103 To change the default setting to display line numbers in vi/vim: vi ~/.vimrc then add the following line to the file: set number Either we can source ~/.vimrc or save and quit by :wq, now future vi/vim sessions will have numbering :) Share Improve...
移动 :tabfirst # 切换到第一个标签页 :tablast # 切换到最后一个标签页 :tab help # 在标签页打开帮助 :tab drop <file> # 如果文件已被其他标签页和窗口打开则跳过去,否则新标签打开 :tab split # 在新的标签页中打开当前窗口里的文件 :tab ball # 将缓存中所有文件用标签页打开 :set showtabline=...
set number "显示行号 set showtabline=0 "隐藏顶部标签栏" set guioptions-=r "隐藏右侧滚动条" set guioptions-=L "隐藏左侧滚动条" set guioptions-=b "隐藏底部滚动条" set cursorline "突出显示当前行" set cursorcolumn "突出显示当前列" set langmenu=zh_CN.UTF-8 "显示中文菜单 ...
(在状态行)的高度,设置为2 set backspace=2 set guicursor+=a:blinkon0 "光标不闪缩 set cmdheight=1 "在编辑过程中,在右下角显示光标位置的状态行 set ruler "总是显示状态行 set laststatus=2 "开启256色支持 set t_Co=256 "在状态行显示目前所执行的命令,未完成的指令片段也会显示出来 set show...
:set showmode显示是输入模式还是替换模式 :set autoindent继承前一行的缩进方式,特别适用于多行注释 :set smartindent为C程序提供自动缩进 :set list显示制表符和行尾符号 :set ts=8为文本输入设置tab stops :set window=n设置文本窗口显示n行 :set number显示行数 ...
"显示光标位置setcursorcolumn "设置高亮显示光标当前所在列setcursorline "设置高亮显示光标所在屏幕行 "粘贴,在Vim中通过鼠标右键粘贴时会在行首多出许多缩进和空格,通过setpaste可以在插入模式下粘贴内容时不会有任何格式变形、胡乱缩进等问题。setpastesetshowcmd "用于设置在屏幕最后一行显示(部分的)命令。showmode 在...