diff options
| author | Patrick Ziegler <p.ziegler96@gmail.com> | 2021-10-09 15:40:08 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-09 15:40:08 +0200 |
| commit | ba41f0eeb13796c26f6c5f3e8c44b2397a466e39 (patch) | |
| tree | 10b244a3a21610ea56c717ecc7146e3e64a54fd1 /lua/telescope/builtin/internal.lua | |
| parent | 603f55dedf16985205918ea5da4293d5b5dce763 (diff) | |
fix: alias cwd_only and only_cwd option for buffers and oldfiles (#1316)
* Alias cwd_only and only_cwd option for builtins
Fixes #1199
Closes #1275
Diffstat (limited to 'lua/telescope/builtin/internal.lua')
| -rw-r--r-- | lua/telescope/builtin/internal.lua | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/lua/telescope/builtin/internal.lua b/lua/telescope/builtin/internal.lua index c2c37d5..03215b1 100644 --- a/lua/telescope/builtin/internal.lua +++ b/lua/telescope/builtin/internal.lua @@ -15,6 +15,20 @@ local conf = require("telescope.config").values local filter = vim.tbl_filter +-- Makes sure aliased options are set correctly +local function apply_cwd_only_aliases(opts) + local has_cwd_only = opts.cwd_only ~= nil + local has_only_cwd = opts.only_cwd ~= nil + + if has_only_cwd and not has_cwd_only then + -- Internally, use cwd_only + opts.cwd_only = opts.only_cwd + opts.only_cwd = nil + end + + return opts +end + local internal = {} -- TODO: What the heck should we do for accepting this. @@ -346,6 +360,7 @@ internal.loclist = function(opts) end internal.oldfiles = function(opts) + opts = apply_cwd_only_aliases(opts) opts.include_current_session = utils.get_default(opts.include_current_session, true) local current_buffer = vim.api.nvim_get_current_buf() @@ -700,6 +715,7 @@ internal.reloader = function(opts) end internal.buffers = function(opts) + opts = apply_cwd_only_aliases(opts) local bufnrs = filter(function(b) if 1 ~= vim.fn.buflisted(b) then return false @@ -711,7 +727,7 @@ internal.buffers = function(opts) if opts.ignore_current_buffer and b == vim.api.nvim_get_current_buf() then return false end - if opts.only_cwd and not string.find(vim.api.nvim_buf_get_name(b), vim.loop.cwd(), 1, true) then + if opts.cwd_only and not string.find(vim.api.nvim_buf_get_name(b), vim.loop.cwd(), 1, true) then return false end return true |
