Skip to content

Commit

Permalink
fix: fix builtins lazy loading (#2590)
Browse files Browse the repository at this point in the history
  • Loading branch information
stasjok committed Jul 2, 2023
1 parent b14de80 commit 0e06009
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/telescope/builtin/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ builtin.lsp_definitions = require_on_exported_call("telescope.builtin.__lsp").de
---@field trim_text boolean: trim results text (default: false)
---@field reuse_win boolean: jump to existing window if buffer is already opened (default: false)
---@field file_encoding string: file encoding for the previewer
builtin.lsp_type_definitions = require("telescope.builtin.__lsp").type_definitions
builtin.lsp_type_definitions = require_on_exported_call("telescope.builtin.__lsp").type_definitions

--- Goto the implementation of the word under the cursor if there's only one, otherwise show all options in Telescope
---@param opts table: options to pass to the picker
Expand Down

0 comments on commit 0e06009

Please sign in to comment.