diff options
| author | Simon Hauser <Simon-Hauser@outlook.de> | 2021-08-21 16:48:19 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-21 16:48:19 +0200 |
| commit | 364d795d22e7a080be793379e30cfdd2036840cf (patch) | |
| tree | 05ea225d8a08374347d61f42d8ce36704e34c1d0 /doc | |
| parent | 81ab591180e22150b00d464008c4cd82c3e8d86d (diff) | |
fix: some improvements for telescope.symbols if run in insert mode (#1117)
- keep insert if run in insert mode
- also look in `.local/share/nvim/telescope/symbols/*.json` for symbols
can be overriden with `symbol_path`
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/telescope.txt | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/doc/telescope.txt b/doc/telescope.txt index 20b3984..b7862b6 100644 --- a/doc/telescope.txt +++ b/doc/telescope.txt @@ -595,13 +595,23 @@ builtin.planets({opts}) *builtin.planets()* builtin.symbols({opts}) *builtin.symbols()* - Lists symbols inside of data/telescope-sources/*.json found in your runtime - path. Check README for more info + Lists symbols inside of `data/telescope-sources/*.json` found in your + runtime path or found in `stdpath("data")/telescope/symbols/*.json`. The + second path can be customized. We provide a couple of default symbols which + can be found in https://github.com/nvim-telescope/telescope-symbols.nvim. + This repos README also provides more information about the format in which + the symbols have to be. Parameters: ~ {opts} (table) options to pass to the picker + Fields: ~ + {symbol_path} (string) specify the second path. Default: + `stdpath("data")/telescope/symbols/*.json` + {sources} (table) specify a table of sources you want to load + this time + builtin.commands({opts}) *builtin.commands()* Lists available plugin/user commands and runs them on `<cr>` |
