如何编写-vim-插件
写函数示例
function! 中 “!” 的作用
如果有同名的函数则将其重载.
函数跨文件使用
如:
1 |
|
前面的 initself
是函数所在的文件名, exit_iron
是函数名.
autocmd 使用
需要用 augroup
包裹. 对同一个组多次使用 augroup
其会叠加.
用 augroup
可能是方便组织.
如:
1 |
|
要想重写则使用 autocmd!
1 |
|
如何编写-vim-插件
http://example.com/2022/11/10/如何编写-vim-插件/