refactor: Use default key for default filtering

Inspired by lazyvim
This commit is contained in:
hedy
2023-11-18 10:01:07 +08:00
parent d35ee70f95
commit 3b4116c2c6
3 changed files with 10 additions and 10 deletions

View File

@@ -412,7 +412,7 @@ Per-filetype filtering example:
- For other file types, include all but string
```lua
symbols.filter = {
['*'] = { 'String', exclude=true },
default = { 'String', exclude=true },
python = { 'Function', 'Class' },
}
```