diff options
| author | fdschmidt93 <39233597+fdschmidt93@users.noreply.github.com> | 2021-12-27 17:55:43 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-27 17:55:43 +0100 |
| commit | 3dafcb419b9b15855731f52965143ad6006726d4 (patch) | |
| tree | a0d8126d2b49bd292d83257a51b886a0c8ed17ed /lua/telescope/init.lua | |
| parent | 88437804e157196f053d0fa62dc891facd9ab746 (diff) | |
fix: too early setup on initial extension access (#1601)
Diffstat (limited to 'lua/telescope/init.lua')
| -rw-r--r-- | lua/telescope/init.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lua/telescope/init.lua b/lua/telescope/init.lua index d52d60d..35577a8 100644 --- a/lua/telescope/init.lua +++ b/lua/telescope/init.lua @@ -93,6 +93,8 @@ function telescope.register_extension(mod) end --- Load an extension. +--- - Notes: +--- - Loading triggers ext setup via the config passed in |telescope.setup| ---@param name string: Name of the extension function telescope.load_extension(name) return _extensions.load(name) |
