forked from colonelpanic/dotfiles
[Emacs] Add custom bindings to frames-only-mode
This commit is contained in:
parent
61d9d53d39
commit
b41c61ba33
@ -1344,6 +1344,22 @@ proced is an top like utility that runs inside of emacs. The following sets auto
|
|||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package discover-my-major)
|
(use-package discover-my-major)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
** frames-only-mode
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(use-package frames-only-mode
|
||||||
|
:ensure nil
|
||||||
|
:preface
|
||||||
|
(defun imalison:other-frame-backwards ()
|
||||||
|
(interactive)
|
||||||
|
(other-frame -1))
|
||||||
|
:bind (:map frames-only-mode-mode-map
|
||||||
|
("C-x 3" . make-frame-command)
|
||||||
|
("C-x o" . other-frame)
|
||||||
|
("C-x O" . imalison:other-frame-backwards))
|
||||||
|
:config
|
||||||
|
(progn
|
||||||
|
(frames-only-mode +1)))
|
||||||
|
#+END_SRC
|
||||||
** refine
|
** refine
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package refine
|
(use-package refine
|
||||||
|
Loading…
Reference in New Issue
Block a user