From 01faa969923ac79b604650e4a1ea9baaf26c340c Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 4 Oct 2020 23:19:40 -0400 Subject: [PATCH] Fix :tabn* ex command conflicts --- modules/editor/evil/+commands.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/editor/evil/+commands.el b/modules/editor/evil/+commands.el index 3bf6cf5e5..f7063a26f 100644 --- a/modules/editor/evil/+commands.el +++ b/modules/editor/evil/+commands.el @@ -91,8 +91,8 @@ (evil-ex-define-cmd "tabl[ast]" #'+workspace/switch-to-last) (evil-ex-define-cmd "tabload" #'+workspace:load) (evil-ex-define-cmd "tabn[ew]" #'+workspace:new) -(evil-ex-define-cmd "tabn[ext]" #'+workspace:switch-next) -(evil-ex-define-cmd "tabp[rev]" #'+workspace:switch-previous) +(evil-ex-define-cmd "tabnext" #'+workspace:switch-next) +(evil-ex-define-cmd "tabprev" #'+workspace:switch-previous) (evil-ex-define-cmd "tabr[ename]" #'+workspace:rename) (evil-ex-define-cmd "tabs" #'+workspace/display) (evil-ex-define-cmd "tabsave" #'+workspace:save)