vim9script export def Do(...args: list) if len(args) == 0 | return | endif execute "normal " .. args[0] .. (args[0] > 0 ? "g;" : "g,") enddef