summaryrefslogtreecommitdiff
path: root/lua/telescope/builtin/init.lua
diff options
context:
space:
mode:
authorSimon Hauser <Simon-Hauser@outlook.de>2021-06-09 19:51:03 +0200
committerGitHub <noreply@github.com>2021-06-09 19:51:03 +0200
commit618e0e6075b4215e43c6a848daa37ef4e354b5dc (patch)
tree1d14ef2c80c4b919ea2b516788ed515d9ed49b7c /lua/telescope/builtin/init.lua
parentfeaed4b6e23bd56906089154f293f2b1ecb68c7e (diff)
feat: set defaults for each picker in telescope setup (#883)
This allows easier picker configuration for example: ```lua require("telescope").setup { pickers = { buffers = { show_all_buffers = true, sort_lastused = true, theme = "dropdown", previewer = false, mappings = { i = { ["<c-q>"] = "smart_send_to_qflist", } } } } } ``` This configuration will be applied when running `:Telescope buffers`
Diffstat (limited to 'lua/telescope/builtin/init.lua')
-rw-r--r--lua/telescope/builtin/init.lua78
1 files changed, 75 insertions, 3 deletions
diff --git a/lua/telescope/builtin/init.lua b/lua/telescope/builtin/init.lua
index 265196e..ca02a00 100644
--- a/lua/telescope/builtin/init.lua
+++ b/lua/telescope/builtin/init.lua
@@ -14,9 +14,39 @@
---
--- <pre>
--- :lua require('telescope.builtin').live_grep({
---- prompt_title = 'find string in open buffers...',
---- grep_open_files = true
---- })
+--- prompt_title = 'find string in open buffers...',
+--- grep_open_files = true
+--- })
+--- -- or with dropdown theme
+--- :lua require('telescope.builtin').find_files(require('telescope.themes').get_dropdown{
+--- previewer = false
+--- })
+--- </pre>
+---
+--- You can also pass default configurations to builtin pickers. These options will also be added if
+--- the picker is executed with `Telescope find_files`.
+---
+--- <pre>
+--- require("telescope").setup {
+--- pickers = {
+--- buffers = {
+--- show_all_buffers = true,
+--- sort_lastused = true,
+--- theme = "dropdown",
+--- previewer = false,
+--- mappings = {
+--- i = {
+--- ["<c-d>"] = require("telescope.actions").delete_buffer,
+--- -- or right hand side can also be a the name of the action as string
+--- ["<c-d>"] = "delete_buffer",
+--- },
+--- n = {
+--- ["<c-d>"] = require("telescope.actions").delete_buffer,
+--- }
+--- }
+--- }
+--- }
+--- }
--- </pre>
---
--- This will use the default configuration options. Other configuration options are still in flux at the moment
@@ -325,4 +355,46 @@ builtin.lsp_document_diagnostics = require('telescope.builtin.lsp').diagnostics
---@field hide_filename boolean: if true, hides the name of the file in the current picker (default is false)
builtin.lsp_workspace_diagnostics = require('telescope.builtin.lsp').workspace_diagnostics
+local apply_config = function(mod)
+ local pickers_conf = require('telescope.config').pickers
+ for k, v in pairs(mod) do
+ local pconf = vim.deepcopy(pickers_conf[k] or {})
+ if pconf.theme then
+ local theme = pconf.theme
+ pconf.theme = nil
+ pconf = require("telescope.themes")["get_" .. theme](pconf)
+ end
+ if pconf.mappings then
+ local mappings = pconf.mappings
+ pconf.mappings = nil
+ pconf.attach_mappings = function(_, map)
+ for mode, tbl in pairs(mappings) do
+ for key, action in pairs(tbl) do
+ map(mode, key, action)
+ end
+ end
+ return true
+ end
+ end
+ mod[k] = function(opts)
+ opts = opts or {}
+ if pconf.attach_mappings and opts.attach_mappings then
+ local attach_mappings = pconf.attach_mappings
+ pconf.attach_mappings = nil
+ local opts_attach = opts.attach_mappings
+ opts.attach_mappings = function(prompt_bufnr, map)
+ attach_mappings(prompt_bufnr, map)
+ return opts_attach(prompt_bufnr, map)
+ end
+ end
+
+ v(vim.tbl_extend("force", pconf, opts))
+ end
+ end
+
+ return mod
+end
+
+-- We can't do this in one statement because tree-sitter-lua docgen gets confused if we do
+builtin = apply_config(builtin)
return builtin