Think before you speak, read before you think.

vim netrw 使用笔记

by

in

分屏显示后,使活动窗口到左上角

control + w 再按 t 

横线分隔变竖线分隔

control + w 再按 H

竖线分隔变横线分隔

control + w 再按 K

分屏显示之后,使所有窗口尺寸相等

control + w 再按 =

增加/减少高度

control + w 再按 +/-

当前窗口放到最高

control + w 再按 _

横向放到最宽

control + w 再按 |

查看帮助

:help ctrl-w

创建一个新文件

按 % , 输入文件名

添加一个目录

按 d ,输入目录名

重命名文件/目录

光标在对应的文件中按 R

删除文件/目录

光标在对应的文件上按 D

在文件中快速退回到目录

:E 回到最近见到的目录
 :e. 回到打开时的目录

为了方便编辑,在树型中打开一个文件时水平分开时,按

o

打开新文件竖直分开时,按

v

在目录树和文件之间切换

control + ^

用更舒服的方式使用 netrw
不使用banner

let g:netrw_banner = 0

使用第三种 list style, 可以树状展开

let g:netrw_liststyle = 3

编辑远端的文件,注意格式,host 后面有两个 slash ,第二个 slash 和 /tmp 是一起的,远端相对路径的就不用写了

vim scp://10.10.10.98//tmp/init/deployment.yaml

netrw 设置 root 目录

:Exp /usr/local/go/src/

https://medium.com/@mozhuuuuu/vimmers-you-dont-need-nerdtree-18f627b561c3
http://vimcasts.org/episodes/the-file-explorer/
http://vimcasts.org/episodes/working-with-windows/

还有一篇有意思的文章,或许不用 netrw 也能得到很高的效率

https://shapeshed.com/vim-netrw/#you-may-not-need-netrw

查看 netrw 自有帮助

help netrw-quickmap

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *