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

Neovim plugin for a code outline window

Results 40 aerial.nvim issues
Sort by recently updated
recently updated
newest added

With this, Aerial works just by being present in runtime path. No requires are called on initialization, which should keep its impact on startup time to the minimum. Configuration is...

As I'm not quite happy with the HTML outline provided by LSP, I thought I'd have a try at writing some Treesitter queries to get basic support into Aerial. Think...

enhancement
P1

Right now if preview is not enabled the right column just displays ``, it would be nice to be able to not spawn right_win if preview is not enabled

enhancement
P2

like, `OpenScratch` function is highlighted in the outline, so it would be great if there's a option to dim the rest to only have the syntax highlighting for the same...

enhancement
P2

In `Symbols-outline` there is a configuration `show_symbol_details = false` used to show underlying text of the node ![image](https://github.com/stevearc/aerial.nvim/assets/2674336/c7de6456-e171-4389-a6dc-f50a97322d00) In `Aerial` I cannot find this functionality, and it shows like this:...

enhancement
P2

[Neotest](https://github.com/nvim-neotest/neotest) provides a [summary window feature](https://github.com/nvim-neotest/neotest/#summary-window) that shows tests inside a buffer and allows users to interact with them. ![image](https://github.com/stevearc/aerial.nvim/assets/16181067/cb5ad7bd-5e58-4a13-9eab-15a5056a00c9) _Copied from the Neotest README_ As a user of aerial,...

enhancement
P2

Thanks for the excellent plugin! I would like to suggest a small tweak to better integrate with Neovim's existing navigation tools - saving the current location to the jumplist before...

enhancement
P2

**Language**: Nim ```nim # Importing a standard library module import strutils # Constants and Variables const pi = 3.14159 var radius: float = 5.0 # Procedures (Functions) proc greet(name: string):...

enhancement
good first issue
P1

Closes #266. We may also want to add a configuration parameter if users should be able to disable/enable this behavior, but I think it's a reasonable enough default that it...

when there is a namespace before the method,outline will not show. As shown below: there is a method implementation: UpdateAttempterAndroid::Init(),but do not show in outline. But if I remove the...