jalcine / cmake.vim

:hammer: CMake functionality within Vim.
https://jalcine.github.io/cmake.vim
MIT License
74 stars 11 forks source link

autoload/cmake/buffer.vim bug fix post #29

Closed lilijreey closed 10 years ago

lilijreey commented 10 years ago

18-line if &l:ft != "cpp" && &l:ft != "c" && &l:ft = "cmake" | return 0 | endif fix to if &l:ft != "cpp" && &l:ft != "c" && &l:ft != "cmake" | return 0 | endif

lost "!" in &l:ft = "cmake"

jalcine commented 10 years ago

This has been mentioned and provided with a fix in issue #27. I'll be merging those changes and pushing a new version, 0.4.5, later today or tomorrow.

Thanks for reporting!.

jalcine commented 10 years ago

This has been fixed in v0.4.5. Please update your local versions. Thanks for using this plugin!