Skip to content

Commit

Permalink
fix(set_profile): add to VimL API
Browse files Browse the repository at this point in the history
  • Loading branch information
marcuscaisey committed Jun 24, 2024
1 parent f106052 commit f70c51f
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions lua/please/plugin.lua
Original file line number Diff line number Diff line change
Expand Up @@ -30,20 +30,13 @@ end
-- create the Please user command
local function create_user_command()
local cmds = {
build = please.build,
run = please.run,
test = please.test,
debug = please.debug,
command = please.command,
history = please.history,
action_history = please.action_history,
maximise_popup = please.maximise_popup,
restore_popup = popup.restore,
jump_to_target = please.jump_to_target,
yank = please.yank,
toggle_debug_logs = logging.toggle_debug,
reload = M.reload,
}
for k, v in pairs(please) do
cmds[k] = v
end
local cmd_name_to_opts = {
test = { 'under_cursor' },
debug = { 'under_cursor' },
Expand Down

0 comments on commit f70c51f

Please sign in to comment.