nvim-window-picker
nvim-window-picker copied to clipboard
This plugins prompts the user to pick a window and returns the window id of the picked window
If the configuration `cmdheight` is configured as `set cmdheight=0` the window highlight for the bottom windows is overridden by the `print('Pick window')` Nvimtree plugin fixed this by removing the pick...
The following config should set the text colour but does not: ```lua local status, picker = pcall(require, "window-picker") if (not status) then return end picker.setup { include_current_win = true, selection_chars...
I would love the ability to set highlight groups at the colorscheme level to control the colors between my different themes rather than setting them with the `setup({...})` function!
Hi! Would you consider an option that changes the placement of the selection character in [nvim-window-picker/init.lua at 4df00a6e96b6fe45c7a80bb7d5455c30630b7a55 · s1n7ax/nvim-window-picker](https://github.com/s1n7ax/nvim-window-picker/blob/4df00a6e96b6fe45c7a80bb7d5455c30630b7a55/lua/window-picker/init.lua#L191)? Maybe something like `left|center|right`. Thanks!
With `set winminheight=0`, picker shortcut replaces window status meaning it’s impossible to tell which buffer is open in a window if it’s not the maximized one.
before  after  Add hl_position ``` -- highlight position -- "all" highlight all -- "center" highlight only in the center hl_position = "all" -- "all" | "center" ``` No...
I'm using `cmdheight = 2` and `laststatus = 3` It seems due to https://github.com/s1n7ax/nvim-window-picker/blob/41cfaa428577c53552200a404ae9b3a0b5719706/lua/window-picker/hints/statusline-winbar-hint.lua#L30-L33, when window picker is in action, `cmdheight` gets reduced to 1 temporarily, which makes it a...
`hint.pre_assign_chars`: this started out as an experiment of unifying the familiar HJKL window navigation hints with the amazing features this plugin has to offer, and evolved into this generalized option....
Using it together with `neo-tree`. Installed using lazy: ```lua return { 's1n7ax/nvim-window-picker', name = 'window-picker', event = 'VeryLazy', version = '2.*', opts = { hint = "floating-big-letter", filter_rules = {...
The floating window filtering is actually a pretty important bugfix for the 2.0 branch