codewindow.nvim icon indicating copy to clipboard operation
codewindow.nvim copied to clipboard

Results 28 codewindow.nvim issues
Sort by recently updated
recently updated
newest added

After setting that to `false` as well as `use_lsp` (but LSP is not set up in my current config anyways), the minimap is still colored. That option does not seem...

The minimap goes to the correct buffer when switching between windows within a tab, however when the tab is swtiched the minimap stays on the previous tab and has to...

Vim's marks act as conceptual anchor points. You set marks for blocks like imports, functions, or similar distinct places in your code. At the moment you have to remember where...

Hello I can't seem to remmap the toggle minimap button. (F5) after many tries via codewindow.toggle_minimap() i couldn't map. config: ``` local status_ok, codewindow = pcall(require, "codewindow") if not status_ok...

If you run auto_enable, you get the minimap following your focus around buffers, this is good :) But if you close the minimap window, and then move to a new...

The config example is missing few `,` and as I was already there - added Lazy packager installation instructions :P

If the `rel="editor"` setting is used the minimap should take up the whole editor height rather than resizing to a window. I'm using these settings: ```lua codewindow.setup({ relative = "editor",...

When `relative = 'editor'` is set, and the screen is divided that the righthand side of the screen takes the full screen and the lefthand side of the screen is...

The config snippet given in the readme doesn't compile. This PR fixes it.

I found a hack using extmark and it is ridiculously simple. Not completely unrelated but I also noticed a weird behavior with tree-sitter highlights, I get different highlighting on the...