vim-vebugger
vim-vebugger copied to clipboard
Not filetype set when buffer opened by vim-vebugger
First, I do:
-
vim src/file.f90
-
:VBGstartGDB ../a.out
- Set a break point in
src/sub.f90
withVBGtoggleBreakpoint sub.f90:<line>
-
<leader>dc
Now, since the break point is in a buffer that is not already open, vim-vebugger
opens it for me. But the filetype is now empty, and so there is e.g. no syntax highlighting or similar. Of course, I can do filetype detect
or set filetype=fortran
, but I would expect this to occur automatically.
I can confirm this on the latest version with neovim. Is there is a reason it hasn't been fixed yet?