Miron

Results 11 comments of Miron

I managed to change the color by adding this to my config: ``` lua vim.g.gruvbox_baby_highlights = { IncSearch = { bg = "#ff9e64", fg = "White" }, CurSearch = {link...

Thanks! It works well for me. Perhaps there is only a small problem that it also filters shortcuts with j and k. For example, leader + j is displayed as...

UPDATE: I don't see this text if I set " use_shell = false". But it doesn't suit me because I still want to see the commands that have been run...

Shouldn't something like this at least support a progress report and cancellation mechanism? Otherwise, plugin authors will end up reinventing a more functional version of this function anyway

@segfault-survivor How would you suggest rewriting something like this using coroutines? ```lua vim.debounce = function(fn, ms) local timer = assert(vim.uv.new_timer()) return function(...) local args = { ... } timer:stop() timer:start(ms,...

@segfault-survivor Sorry, I don't understand how you suggest implementing those wait functions. Text explanations are ok, but just a **working** code example explains everything 10 times better. I'm waiting for...

My main goal was to fix #1491, so after investigation, I figured out that it happens because the callback isn’t called if the unloaded equals zero. That could be fixed...

My 2 cents: 1 - I think this session event should go in dap.listeners.on_session_changed (see :h dap-listeners-ext) 2 - My advocacy for the ability to disable terminal pooling: I assumed...

Maybe for each breakpoint, add diagnostics that will show breakpoint condition, log message, hit condition, etc., if present? This is similar to the exception diagnostic

Note: I’ve just discovered that the current collapse implementation for entries works as a "collapse-all" action https://github.com/mfussenegger/nvim-dap/blob/7aade9e99bef5f0735cf966e715b3ce45515d786/lua/dap/ui.lua#L246C1-L248C8