Daniel Steinberg
Daniel Steinberg
Following the steps you posted, I can see that there are many errors, with an entire column of "E" signs created by `nvim-scrollview`. However, movements work fine for me without...
Here's another workaround to prevent highlight groups defined in `init.vim` from being cleared. This asynchronously runs the command for defining the group. Before: ```vim highlight HighlightGroup ctermfg=4 guibg=Blue ``` After...
I implemented this a long time ago (over 9 years ago), and don't recall the details. I browsed the code to review the algorithm. A sentence's importance is calculated by...
Hi @Archdsenna, thanks for proposing the idea. In addition to custom commands, the plugin supports 1) movement keys (`h`, `j`, `k`, `l`) for navigating windows, 2) `s` for swapping buffers,...
> "Will this feature be supported in the future?" I'm planning to add the feature described [above](https://github.com/dstein64/vim-win/issues/3#issuecomment-2302065249). I'll reopen this issue.
I've added a letter mode that can be entered with `g`. In letter mode, the window labels show letters that are used for navigation instead of window numbers. > "There...
Hi @lostl1ght. I don't know of a Neovim option for specifying where text should wrap when `wrap` is set. The plugin has options for controlling the transparency of its windows....
I've added a new option, `scrollview_hide_for_insert`, for hiding scrollbars and signs for insert mode. Vimscript: ```vim let g:scrollview_hide_for_insert = v:true ``` Lua: ```lua vim.g.scrollview_hide_for_insert = true -- Or with a...
Hi @Andrew15-5. I've replaced `scrollview_hide_for_insert` with two separate options, `scrollview_signs_hidden_for_insert` and `scrollview_hide_bar_for_insert`. The first specifies a list of sign groups that will be hidden for insert mode. `'all'` can be...
Hi @stankovictab. When `hide_on_cursor_intersect` was implemented, I also considered adding a `hide_on_text_intersect` option, which was the same type of option as the `hide_on_character_intersect` option you proposed. I tried implementing it...