使用vim时,如果打开很多窗口, 占用好几行屏幕, 一个一个关闭又太麻烦, 下面命令写入vimrc文件, 在normal模式下,按<leader>bdo可以关闭所有非当前buffer 我的<leader>配置为分号‘;’, 如下: let mapleader=";" let maplocalleader=";" command! BcloseOthers call BufCloseOthers() function! BufCloseOthers(...
" Close current buffer map <leader>bd :Bclose<cr> " Close all buffers map <leader>ba :1,1000 bd!<cr> Useful mappings for managing tabs: map <leader>tn :tabnew<cr> map <leader>to :tabonly<cr> map <leader>tc :tabclose<cr> map <leader>tm :tabmove " Opens a new tab with th...
Vim has a built-in command to close all windows except the current one (:only), which is nice for focusing on a single buffer. Sometimes I want to cleanup my buffers by closing all of the buffers except for the current one. This can be done with the command: :%bdelete|edit #|norma...
:set browsedir=last -- 用上次访问过的目录(默认); :set browsedir=buffer -- 用当前文件所在目录; :set browsedir=current -- 用当前工作目录; :Sex -- 水平分割一个窗口,浏览文件系统; :Vex -- 垂直分割一个窗口,浏览文件系统; 4. 光标的移动 4.1 基本移动 以下移动都是在normal模式下。 h或退格:...
:set browsedir=buffer – 用当前文件所在目录; :set browsedir=current – 用当前工作目录; :Sex – 水平分割一个窗口,浏览文件系统; :Vex – 垂直分割一个窗口,浏览文件系统; 0x03 光标的移动 4.1 基本移动 以下移动都是在normal模式下。 h或退格: 左移一个字符; ...
:set browsedir=buffer -- 用当前文件所在目录; :set browsedir=current -- 用当前工作目录; :Sex -- 水平分割一个窗口,浏览文件系统; :Vex -- 垂直分割一个窗口,浏览文件系统; ###4. 光标的移动 ###4.1 基本移动 以下移动都是在normal模式下。 h...
由于 WPF 路由事件(主要是隧道和冒泡)的存在,我们很容易能够通过只监听窗口中的某些事件使得整个窗口中...
close current buffer<Alt-Q> force close current buffer<Alt-Shift-Q> split buffer vertically<Ctrl-W>v split buffer horizontally<Ctrl-W>s navigate down<Ctrl-J> navigate up<Ctrl-K> navigate left<Ctrl-H> navigate right<Ctrl-L> operaions innvim-tree ...
"Close current buffermap<leader>bd :Bclose<cr>"Close all buffersmap<leader>ba :1,1000 bd!<cr> Useful mappings for managing tabs: map<leader>tn :tabnew<cr>map<leader>to :tabonly<cr>map<leader>tc :tabclose<cr>map<leader>tm :tabmove"Opens a new tab with the current buffer's path"...
g CTRL-G -> 计算当前编译的文件的字数等信息 (word count on current buffer) !!date -> 插入当前时间 (insert current date) 多个文件的编辑 (edit multifiles) vim可以编辑多个文件,例如 vim a.txt b.txt c.txt 就打开了3个文件 :next -> 编辑下一个文件 (next file in buffer) ...