diff options
author | Benjamin Chausse <benjamin.chausse@goto.com> | 2025-04-02 18:47:17 -0400 |
---|---|---|
committer | Benjamin Chausse <benjamin.chausse@goto.com> | 2025-04-02 18:47:17 -0400 |
commit | 923d6bf6b229d9c9b3202a96c52032b4c8c7b46e (patch) | |
tree | 981a55f6d079ce9aaf0987af0860b01d9005aa83 | |
parent | 1177b82963a2c99d440d46132112a8a8904b6b5c (diff) |
docs: Make opts work with README
-rw-r--r-- | lua/dropship.lua | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/lua/dropship.lua b/lua/dropship.lua index d816592..7298d45 100644 --- a/lua/dropship.lua +++ b/lua/dropship.lua @@ -6,24 +6,24 @@ local conf = require("telescope.config").values local actions = require("telescope.actions") local action_state = require("telescope.actions.state") -M.drop_sites = {} +M.drop_locations = {} M.use_exp = false M.setup = function(opts) opts = opts or {} - if type(opts.drop_sites) == "table" then - M.drop_sites = opts.drop_sites - elseif type(opts.drop_sites) == "string" then + if type(opts.drop_locations) == "table" then + M.drop_locations = opts.drop_locations + elseif type(opts.drop_locations) == "string" then local success, loaded_sites = pcall(function() - return dofile(vim.fn.expand(opts.drop_sites)) + return dofile(vim.fn.expand(opts.drop_locations)) end) if success and type(loaded_sites) == "table" then - M.drop_sites = loaded_sites + M.drop_locations = loaded_sites else - vim.notify("Failed to load drop_sites from file: " .. opts.drop_sites, vim.log.levels.ERROR) + vim.notify("Failed to load drop_locations from file: " .. opts.drop_locations, vim.log.levels.ERROR) end else - vim.notify("Invalid drop_sites configuration", vim.log.levels.ERROR) + vim.notify("Invalid drop_locations configuration", vim.log.levels.ERROR) end M.use_exp = opts.new_tab_explorer or false end @@ -33,7 +33,7 @@ local function get_target(opts, callback) pickers .new(opts, { finder = finders.new_table({ - results = M.drop_sites, + results = M.drop_locations, entry_maker = function(entry) return { value = entry, |