Blake Scampone

Results 2 comments of Blake Scampone

I added the function below to `util.lua`: ```lua function M.switch_to_preview() local current_win = api.nvim_get_current_win() local windows = api.nvim_list_wins() local next_win -- Find the next window for i, win in ipairs(windows)...

I ran into a similar issue. Here is a workaround: Place the following in your `settings.json`: ```json { "vim.normalModeKeyBindings": [ { "before": ["shift+l"], "commands": ["workbench.action.nextEditorInGroup"], }, { "before": ["shift+h"], "commands":...