在 Vim 编辑器中为 NERDTree 创建命令快捷方式
我想在命令行上创建 NERDTree 的缩写。我发现每次我想启用它时都必须编写 :NERDTree
,这很烦人。所以我想输入 :nr
或类似的内容。这可能吗?
I'd like to create an abbreviation for NERDTree on the command-line. I find it annoying have to write :NERDTree
every time I want to enable it. So I'd like to type :nr
or something like that. Is that possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
在我的
.vimrc
中,我有:因此,当我需要 NERDTree 时,我只需在正常模式下编写
,ne
即可。In my
.vimrc
I have:So when I need NERDTree I just write
,ne
in normal mode.我发现这非常有效,比我尝试过的任何其他建议都要好:
您只需按 control-n 即可返回层次结构。当然,在层次结构中选择一个文件名会将您切换到该文件。
:NERDTree
命令从头开始,关闭层次结构,同时使用:NERDTreeFocus< /code> 只是移动焦点,我认为这就是你想要的)
I find this works very nicely, better than any other suggestions I've tried:
You just hit control-n to go back to the hierarchy. Selecting a file name in the hierarchy will switch you, of course, to that file.
:NERDTree
command starts you from scratch, closing the hierarchy, while using:NERDTreeFocus
simply moves the focus, which I think is what you want)要进行切换,请使用以下命令:
map;:NERDTreeToggle
To toggle, use the following:
map <silent> <C-n> :NERDTreeToggle<CR>
对于前 Sublime 用户:
For ex Sublime users:
添加到你的 rc 文件(.bashrc / .zshrc)这个快捷方式
,然后重新加载你的 bash 宽度
并运行
-c 标志允许你在启动终端时执行命令
add to your rc file (.bashrc / .zshrc) this shortcut
then, reload your bash width
and run
the -c flag allows you to execute a command when starting the terminal
.vimrc:
.bash_profile:
.vimrc:
.bash_profile: