Merge branch 'master' into master

This commit is contained in:
Andrew Xie
2021-12-02 17:41:12 +11:00
committed by GitHub
9 changed files with 276 additions and 216 deletions

View File

@@ -32,6 +32,7 @@ vim.g.symbols_outline = {
show_guides = true,
auto_preview = true,
position = 'right',
relative_width = true,
width = 25,
auto_close = false,
show_numbers = false,
@@ -85,7 +86,8 @@ vim.g.symbols_outline = {
| highlight_hovered_item | Whether to highlight the currently hovered symbol (high cpu usage) | boolean | true |
| show_guides | Whether to show outline guides | boolean | true |
| position | Where to open the split window | 'right' or 'left' | 'right' |
| width | How big the window is (relative to the current split) | int | 25 |
| relative_width | Whether width of window is set relative to existing windows | boolean | true |
| width | Width of window (as a % or columns based on `relative_width`) | int | 25 |
| auto_close | Whether to automatically close the window after selection | boolean | false |
| auto_preview | Show a preview of the code on hover | boolean | true |
| show_numbers | Shows numbers with the outline | boolean | false |