aerial.nvim
aerial.nvim copied to clipboard
Open aerial next to the focused window
System information
- OS: GNU/Linux
- Neovim version: 0.7.2
Steps to reproduce
- Open two or more windows of the same buffer
When not floating, aerial opens either to the left of the first window or to the right of the last one. Take a look at the screenshots (notice the focused window):
Would it be possible to always have it spawned next to the focused window, to achieve something like this?
Shouldn't be too hard to add support for this, but I'll need to add another config option for it. Will look into it soon
I've refactored some of the options (in a backwards-compatible way). The following should do what you want:
require('aerial').setup({
layout = {
placement = 'window',
},
})
This is simply perfect, thank you very much! ❤️