2

我的 ~/.vimrc 只包含

so ~/config/vim/vimrc

~/config/vim/vimrc 包含常用选项、少量映射和不同文件类型的源文件,我有:

autocmd FileType cpp so ~/config/vim/filetype/cpp.vimrc

在该文件中,我定义了以下函数,每次打开新的 cpp 标头时我都想调用它以避免双重包含:

python import vim

function! s:insert_gates()
python << endPython
hpp = vim.current.buffer.name
hpp = hpp[hpp.rfind('/') + 1:]
hpp = hpp.upper()
hpp = hpp.replace('.', '_')
vim.current.buffer.append("#ifndef " + hpp)
vim.current.buffer.append("# define " + hpp)
vim.current.buffer.append("")
vim.current.buffer.append("#endif")
endPython
endfunction

autocmd BufNewFile *.hpp call <SID>insert_gates()

然后,如果我向我的外壳询问:

vim -O3 t1.hpp t2.hpp t3.hpp

我有:

|                     |#ifndef T2_HPP       |#ifndef T3_HPP       |
|                     |# define T2_HPP      |# define T3_HPP      |
|                     |                     |                     |
|                     |#endif               |#endif               |
|                     |                     |#ifndef T3_HPP       |
|                     |                     |# define T3_HPP      |
|                     |                     |                     |
|                     |                     |#endif               |
|                     |                     |                     |
|_____________________|_____________________|_____________________|
|t1.h                 |t2.h                 |t3.h                 |

这不是我想要的……你看到我的错误了吗?谢谢。

4

1 回答 1

2

正如这里所引用的,每次打开一个新文件时,Vim 都会创建一个新文件。 autocmd为防止这种情况,请将您的该部分替换为.vimrc

python import vim

function! s:insert_gates()
python << endPython
hpp = vim.current.buffer.name
hpp = hpp[hpp.rfind('/') + 1:]
hpp = hpp.upper()
hpp = hpp.replace('.', '_')
vim.current.buffer.append("#ifndef " + hpp)
vim.current.buffer.append("# define " + hpp)
vim.current.buffer.append("")
vim.current.buffer.append("#endif")
endPython
endfunction

augroup insertgates
    autocmd!
    autocmd BufNewFile *.hpp call <SID>insert_gates()
augroup END
于 2015-11-11T04:44:20.507 回答