detour.nvim
detour.nvim copied to clipboard
Use popup windows to navigate files/buffer and to contain shells/TUIs
Does WinResized not trigger if VimResized is triggered?
Use metatables to make sure that popup_to_covered_windows never returns window ids that have already been closed. Make sure to check both keys and values.
The lazyvim distro sets this in an incompatible way with the upcoming detour features.
This change should have 2 parts: 1. The title 2. New popups should be free to cover any uncovered base windows. This removes 2 unintuitive behaviors from the plugin: 1....
I tried to make detour window automatically close when you leave it with: ```lua vim.keymap.set("n", "", function() require("detour").Detour() -- Open a detour popup local current_bufnr = vim.api.nvim_get_current_buf() local current_winid =...
As discussed in #21 and #22, when we handle "nested" popups, we need to account for the parent window being either a Detour _or_ any other sort of popup. As...
I'm a bit concerned that this feature could interfere with other automatic behaviors from other plugins or user-made autocmds. This feature definitely should be able to be turned off.
Hello! That's such a great plugin, thank you very much! I think it will improve lots of my workflows. However, I would like to suggest toggle option.It will be great,...
This issue is inspired by this comment from @kandodev > @carbon-steel what's the best way to select the popup when it's in a split? h and l move me left...