Support symbols-outline extension (#456)

* Support symbols-outline extension.
This commit is contained in:
YONG LI 2021-11-28 19:00:34 +08:00 committed by GitHub
parent 49db98c856
commit 1ae4f0aa74
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 0 deletions

View File

@ -630,6 +630,7 @@ extensions = {'quickfix'}
* nvim-tree
* quickfix
* toggleterm
* symbols-outline
#### Custom extensions

View File

@ -656,6 +656,7 @@ extensions with:
- nvim-tree
- quickfix
- toggleterm
- symbols-outline
*lualine-Custom-extensions*

View File

@ -0,0 +1,9 @@
-- Copyright (c) 2020-2021 hoob3rt
-- MIT license, see LICENSE for more details.
local M = {}
M.sections = { lualine_a = { 'filetype' } }
M.filetypes = { 'Outline' }
return M