标签: vim
我目前在.vimrc中有以下代码段:
command Notes tabnew ~/notes.markdown
这会在新标签页中打开我的备注文件。但是,我宁愿按照以下方式做到:
我该怎么做?
答案 0 :(得分:0)
在.vimrc:
.vimrc
au BufAdd,BufNewFile * nested tab sball
HTH