diff options
author | Daniil Rozanov <daniilrozzanov@gmail.com> | 2024-04-26 00:50:04 +0300 |
---|---|---|
committer | Daniil Rozanov <daniilrozzanov@gmail.com> | 2024-04-26 00:50:04 +0300 |
commit | 8d05fcaaeb1442c709f148ff934d92900743f051 (patch) | |
tree | a766cc97461968da16baba157acc636388924983 /lua/cmake/terminal.lua | |
parent | 2470bad1151fc49941c3821f187c6c232c0cec78 (diff) |
feat: command to edit variants
If there is no cmake-variants.yaml file in current directory, command creates it with default variants
Diffstat (limited to 'lua/cmake/terminal.lua')
-rw-r--r-- | lua/cmake/terminal.lua | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lua/cmake/terminal.lua b/lua/cmake/terminal.lua index 9ba8cb1..358d731 100644 --- a/lua/cmake/terminal.lua +++ b/lua/cmake/terminal.lua @@ -35,7 +35,6 @@ M.cmake_execute = function(command, opts) ) end elseif config.notification.after == "failure" or config.notification.after == true then - vim.notify(vim.inspect("failure ")) local msg = "CMake failed. Code " .. tostring(code) local opt_msg = vim.tbl_get(opts, "notify", "err_message") if type(opt_msg) == "string" then @@ -82,7 +81,6 @@ M.target_execute = function(command, opts) if not runnable:is_open() then runnable:open() end - vim.notify(vim.inspect(command), vim.log.levels.INFO) if command.cmd then runnable:send(command.cmd, not config.runner_terminal.focus) end |