khris190
khris190
for some reason i get shown a window with my command and press ENTER to go back to lazygit and adding \ at the start of the command fixes it...
i added hardcoded 0 to on_exit() in terminal for now, but i'm thinking that we could store command exit code in another file so we could get it after
also why don't runners have any callbacks?
i think it might be complete. i'll use it a bit so i'm sure everything works as intended. i added a few local functions to terminal because i didn't feel...
would be cool if we just got opt in cmake.run_test(opt) to be able to overwrite some stuff and that would let us just set "*" on filename to run all...
option to run all was just merged, i'll try to update it for switch in lua if i find a good way of cleanly merging it with user_command arguments 
@Civitasv hey, could you elaborate on this nvim_feedkeys line, i tried to deal with this issue but i don't even have those keymaps. the comment only talks about exiting insert...
LazyVim uses this init function and it seems to fix the issue: ```lua init = function() local loaded = false local function check() local cwd = vim.uv.cwd() if vim.fn.filereadable(cwd .....
You could use cmake.select_launch_target with a cmake_tools.run callback? for example: ```lua vim.keymap.set("n", "dz", function() cmake.select_launch_target(function() vim.cmd("CMakeRun") end) end, { desc = "run with target select" }) ``` is that good...
> I don't quite understand where it should be located and where the `cmake` variable comes from wherever in Your config, you can create your own keymap or own vim...