窗口管理那个 <C-w> H/J/K/L 怎么按呀(大写用于调整位置)
vim吧
全部回复
仅看楼主
level 7
yujiaaoshiwo 楼主
有没有命令行可以调整split窗口的位置呀 手速是在是跟不上 不会按那个窗口那个调整组合按键 顺便问一下 <C-o>的具体用法 照着别人的vim写的定义<C-s> 为保存 但是没看懂
map <C-s> :w<CR>
imap <C-s> <C-o>:w<CR>
2013年04月29日 12点04分 1
level 7
yujiaaoshiwo 楼主
CTRL-W K
Move the current window to be at the very top, using the full
width of the screen. This works like closing the current
window and then creating another one with ":topleft split",
except that the current window contents is used for the new
window. *CTRL-W_J*
截取的vim说明 (我目前装的双系统 中文说明书win读取不了 硬盘分区不支持 只能复制gvim的help了) 能帮忙看看嘛?
ps 又仔细看了下 貌似可以用<C-w>r 调整每个窗口顺序 把当前窗口放到下面或上面神马的。。。
2013年04月29日 15点04分 4
level 1
我在/etc/vim/vimrc中设置了
:map <C-H> <C-W>h
:map <C-J> <C-W>j<C-W>_
:map <C-K> <C-W>k<C-W>_
:map <C-L> <C-W>l
:map <C-Q> :q<CR>
符合vim上下左右的按键习惯,省事儿不少
2014年02月20日 09点02分 5
1