cmake.vim
cmake.vim copied to clipboard
:hammer: CMake functionality within Vim.
Hello, I'm trying this plugin with vim 8.0. I do like stated in the documentation: * `:CMakeCreateBuild build` * `:CMakeBuild` It just prints **Built all targets** but nothing happens, the...
I've been using this project a lot on the side but it's getting _really_ slow. In lieu of me wanting to rebuild it in the open, this serves as a...
https://github.com/skywind3000/asyncrun.vim
- [x] Document known variables used by `cmake.vim`. - [ ] Document functions for public use by `cmake.vim`. - [ ] Document commands for public use by `cmake.vim`. --- Blocks...
To ensure a cleaner build environment to test things with Vim, ensuring 100% passing tests would be needed. --- This change is [](https://reviewable.io/reviews/jalcine/cmake.vim/66)
Under Neovim, cmake.vim doesn't take advantage of the async [`job-control`](http://neovim.io/doc/user/job_control.html#job-control) functionality thus making it take the whole program's start time a bit longer. --- This originated at https://github.com/neovim/neovim/issues/2888.
Whenever one updates a target's `CMakeLists.txt`, `cmake.vim` should update the information relating to that particular target. - [ ] Make it an optional reload, via a prompt and/or option like...
In order to keep some private implementations _private_, consider using the `s:` prefix with objects to hide certain implementation details from end-users. - [ ] extension code is a hot...
The "Getting Started" section of the README currently indicates: ``` vim " Create a new binary directory for your clean project. :CMakeCreateProject ``` But this part of the API was...
I don't know if anyone would find this interesting, but I personally think that something like [`vim-test`](https://github.com/janko-m/vim-test) would be really nifty to have support for in Vim. A little bit...