Daniil Rozanov
Daniil Rozanov
Вместо того, чтобы тратить строчки с несколькими `using namespace X`, предлагается разрешить после директивы `using namespace` перечислять пространства имён через запятую. Пример: ```cpp // ... void foo() { // using...
If you run `:Telescope lsp_document_symbols`, you can by `` select a tag to filter items. It would be nice if aerial's telescope extension supported this feature ### What is the...
We already have cool [`plugin`](https://github.com/Civitasv/cmake-tools.nvim) that allows to build and run project based on cmake. Unfortunately it doesn't support navigation through project from the perspective of cmake. I mean, sometimes...
I am writing plugin, which can build project. Looks good to use toggleterm as environment to run build command. I don't want to allow user to execute any other commands...
My config is ```lua return { "Civitasv/cmake-tools.nvim", config = function() require("cmake-tools").setup { cmake_executor = { name = "toggleterm", opts = { direction = "tab", -- 'vertical' | 'horizontal' | 'tab'...
My config is `return { "Civitasv/cmake-tools.nvim" }`. I tested on trivial project with only `main.cpp` and `CMakeLists.txt`. `CMakeGenerate` starts infinite loop (according to spinner) and error is ``` Error executing...
I am writing a plugin, which needs to do some i/o jobs on setup and later. So i want to to all of this async and without callbacks. Is there...
### Bug Description In line ```cpp std::string c = "afaf"; ``` `vik` command selects only `string c`, ignoring `std::`. I am using defaut configuration of plugin from README. ### neovim...
After i remove some buffer (second in example) from harpoon list, the list looks like this. ``` ┌Harpoon────────── │ 1 lua/chell/plugins/harpoon.lua │ 2 │ 3 lua/chell/keymaps.lua │ 4 lua/chell/plugins/lsp.lua ```...
### Neovim version (nvim -v) 0.9.5 ### Operating system/version MacOS 14.4 ### Describe the bug I created task template with parameter as followed ```lua build = { name = "Build...