Fix #5176 (again): wrong interactive arg to gt/gT commands
This commit is contained in:
parent
9b1be8f5e2
commit
80c32eaa89
1 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@
|
|||
;;;###autoload (autoload '+tabs:next-or-goto "ui/tabs/autoload" nil t)
|
||||
(evil-define-command +tabs:next-or-goto (index)
|
||||
"Switch to the next tab, or to INDEXth tab if a count is given."
|
||||
(interactive "<C>")
|
||||
(interactive "<c>")
|
||||
(if index
|
||||
(centaur-tabs-select-visible-nth-tab index)
|
||||
(centaur-tabs-forward)))
|
||||
|
@ -12,7 +12,7 @@
|
|||
;;;###autoload (autoload '+tabs:previous-or-goto "ui/tabs/autoload" nil t)
|
||||
(evil-define-command +tabs:previous-or-goto (index)
|
||||
"Switch to the previous tab, or to INDEXth tab if a count is given."
|
||||
(interactive "<C>")
|
||||
(interactive "<c>")
|
||||
(if index
|
||||
(centaur-tabs-select-visible-nth-tab index)
|
||||
(centaur-tabs-backward)))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue