Closed joe-skb7 closed 9 years ago
I created workaround (dirty hack) to fix this issue:
-autocmd VimEnter * call s:startup()
+if (@% != 'main.c')
+ autocmd VimEnter * call s:startup()
+endif
It works for me, but it needs to be done in different way. Unfortunately I'm not into vim scripting language, so I couldn't come up with proper production patch.
@bogado This issue isn't fixed and should be reopened. There is no patch yet to fix it.
@bogado Ok, never mind, I created new issue for this :) See #62
I have next line in my
.vimrc
:This loads content from template file when I'm creating new
main.c
file. But whenfile-line
plugin is installed -- this functionality doesn't work (newly createdmain.c
is blank).