diff options
author | Benjamin Chausse <benjamin.chausse@goto.com> | 2025-04-02 18:28:17 -0400 |
---|---|---|
committer | Benjamin Chausse <benjamin.chausse@goto.com> | 2025-04-02 18:28:17 -0400 |
commit | f126be9187d662f93f2ba21f23fcd60ad2a0cd19 (patch) | |
tree | 6909c71f4c8baa152c143978cbb57c380df36a36 | |
parent | 49c4f761a58ffc9c3998b0daa7a67fb9c65771e6 (diff) |
Vim cmds + `:Exp` toggle
-rw-r--r-- | lua/dropship.lua | 28 |
1 files changed, 23 insertions, 5 deletions
diff --git a/lua/dropship.lua b/lua/dropship.lua index 0a5528a..d816592 100644 --- a/lua/dropship.lua +++ b/lua/dropship.lua @@ -6,24 +6,26 @@ local conf = require("telescope.config").values local actions = require("telescope.actions") local action_state = require("telescope.actions.state") -local drop_sites = {} +M.drop_sites = {} +M.use_exp = false M.setup = function(opts) opts = opts or {} if type(opts.drop_sites) == "table" then - drop_sites = opts.drop_sites + M.drop_sites = opts.drop_sites elseif type(opts.drop_sites) == "string" then local success, loaded_sites = pcall(function() return dofile(vim.fn.expand(opts.drop_sites)) end) if success and type(loaded_sites) == "table" then - drop_sites = loaded_sites + M.drop_sites = loaded_sites else vim.notify("Failed to load drop_sites from file: " .. opts.drop_sites, vim.log.levels.ERROR) end else vim.notify("Invalid drop_sites configuration", vim.log.levels.ERROR) end + M.use_exp = opts.new_tab_explorer or false end local function get_target(opts, callback) @@ -31,7 +33,7 @@ local function get_target(opts, callback) pickers .new(opts, { finder = finders.new_table({ - results = drop_sites, + results = M.drop_sites, entry_maker = function(entry) return { value = entry, @@ -63,7 +65,11 @@ end M.new_tab = function(opts) opts = opts or {} get_target(opts, function(target) - vim.cmd("tabnew " .. target) + if M.use_exp then + vim.cmd("tabnew " .. target) + else + vim.cmd("tabnew") + end vim.cmd("tcd " .. target) end) end @@ -75,4 +81,16 @@ M.globally = function(opts) end) end +vim.api.nvim_create_user_command("DropshipCurrentTab", function(opts) + M.current_tab(opts) +end, { nargs = "?" }) + +vim.api.nvim_create_user_command("DropshipNewTab", function(opts) + M.new_tab(opts) +end, { nargs = "?" }) + +vim.api.nvim_create_user_command("DropshipGlobalDir", function(opts) + M.globally(opts) +end, { nargs = "?" }) + return M |