[Post/Using Emacs tab-bar-mode] Fixed wrong functions names
This commit is contained in:
parent
dfa6147cfe
commit
60a7e8a191
1 changed files with 2 additions and 2 deletions
|
@ -412,9 +412,9 @@ Yesterday I took some time to find a better solution for this problem and came u
|
||||||
|
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(defun mmk2410/tab-bar-switch-or-create (name func)
|
(defun mmk2410/tab-bar-switch-or-create (name func)
|
||||||
(if (mmk2410/tab-exists name)
|
(if (mmk2410/tab-bar-tab-exists name)
|
||||||
(tab-bar-switch-to-tab name)
|
(tab-bar-switch-to-tab name)
|
||||||
(mmk2410/new-tab name func)))
|
(mmk2410/tab-bar-new-tab name func)))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
In working through the problem I though that I essentially need some more or less abstract function that checks whether a tab with a given name already exists and, if not, creates one using a given function. =mmk2410/tab-bar-switch-or-create= does exactly this.
|
In working through the problem I though that I essentially need some more or less abstract function that checks whether a tab with a given name already exists and, if not, creates one using a given function. =mmk2410/tab-bar-switch-or-create= does exactly this.
|
||||||
|
|
Loading…
Reference in a new issue