rename a function

This commit is contained in:
Kartik K. Agaram 2022-08-02 15:40:13 -07:00
parent 7ffb81ef23
commit 39aab4f2f1

View File

@ -242,7 +242,7 @@ function run_command(cmd, args)
elseif cmd == 'add' then
command.add_note(args)
elseif cmd == 'step' then
command.step_note(args)
command.step(args)
elseif cmd == 'down one pane' then
command.down_one_pane()
elseif cmd == 'up one pane' then
@ -466,7 +466,7 @@ function command.add_note(rel)
update_pane_bounds()
end
function command.step_note(rel)
function command.step(rel)
if rel == nil then
rel = 'next'
end