mirror of
https://github.com/pestctrl/emacs-config.git
synced 2026-06-14 12:21:20 +00:00
View mode for ibuffer!
This commit is contained in:
parent
fe5c16a802
commit
4f3da71a20
1 changed files with 8 additions and 0 deletions
|
|
@ -1409,6 +1409,14 @@
|
|||
|
||||
;(add-hook 'exwm-workspace-switch-hook 'ibuffer)
|
||||
#+END_SRC
|
||||
*** view-mode
|
||||
#+begin_src emacs-lisp
|
||||
(defun my/ibuffer-view ()
|
||||
(interactive)
|
||||
(ibuffer-visit-buffer)
|
||||
(view-mode))
|
||||
(define-key ibuffer-mode-map (kbd "v") #'my/ibuffer-view)
|
||||
#+end_src
|
||||
** Ace jump
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(use-package ace-jump-mode)
|
||||
|
|
|
|||
Loading…
Reference in a new issue