From 5abc58ad4cbc2fddd9b4eb69c9298351fc27c05b Mon Sep 17 00:00:00 2001 From: Michael Lan Date: Wed, 26 Jan 2022 14:20:42 -0800 Subject: [PATCH] Allow for bar in Luadev command --- plugin/luadev.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/luadev.vim b/plugin/luadev.vim index be93d92..c76460b 100644 --- a/plugin/luadev.vim +++ b/plugin/luadev.vim @@ -1,4 +1,4 @@ -command! Luadev lua require'luadev'.start() +command! -bar Luadev lua require'luadev'.start() noremap (Luadev-RunLine) lua require'luadev'.exec(vim.api.nvim_get_current_line()) vnoremap (Luadev-Run) :call luadev_run_operator(v:true)