system changes
This commit is contained in:
parent
8f4b5c68ab
commit
b729cdd7d9
1 changed files with 10 additions and 2 deletions
|
@ -314,19 +314,27 @@ Install and configure =eat= as a terminal emulator in Emacs.
|
||||||
(use-package eat
|
(use-package eat
|
||||||
:init
|
:init
|
||||||
(setopt eat-kill-buffer-on-exit t)
|
(setopt eat-kill-buffer-on-exit t)
|
||||||
;;(add-to-list 'eshell-modules-list 'eshell-rebind)
|
(defun jj/eshell-quit-or-delete-char (arg)
|
||||||
|
(interactive "p")
|
||||||
|
(if (and (eolp) (looking-back eshell-prompt-regexp))
|
||||||
|
(progn
|
||||||
|
(eshell-life-is-too-much)
|
||||||
|
(ignore-errors
|
||||||
|
(delete-window)))
|
||||||
|
(delete-forward-char arg)))
|
||||||
:config
|
:config
|
||||||
(eat-eshell-mode)
|
(eat-eshell-mode)
|
||||||
(setq eshell-visual-commands '())
|
(setq eshell-visual-commands '())
|
||||||
:hook
|
:hook
|
||||||
(eat-mode . (lambda () (display-line-numbers-mode -1)))
|
(eat-mode . (lambda () (display-line-numbers-mode -1)))
|
||||||
(eshell-mode . (lambda () (display-line-numbers-mode -1)
|
(eshell-mode . (lambda () (display-line-numbers-mode -1)
|
||||||
|
(bind-keys :map eshell-mode-map ("C-d" . jj/eshell-quit-or-delete-char))
|
||||||
(eshell/alias "ll" "ls -alF $@*")
|
(eshell/alias "ll" "ls -alF $@*")
|
||||||
(eshell/alias "la" "ls -a $@*")
|
(eshell/alias "la" "ls -a $@*")
|
||||||
(eshell/alias "l" "ls -F $@*")))
|
(eshell/alias "l" "ls -F $@*")))
|
||||||
:bind
|
:bind
|
||||||
("C-c v" . eshell)
|
("C-c v" . eshell)
|
||||||
(:map eshell-mode-map ("C-d" . eshell-delchar-or-maybe-eof)))
|
(:map eshell-mode-map ("C-d" . jj/eshell-quit-or-delete-char)))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
Use =corfu= and =vertico= for completions. =orderless= is used to allow searching in any portion of a string and =marginalia= gives descriptions of items in the list.
|
Use =corfu= and =vertico= for completions. =orderless= is used to allow searching in any portion of a string and =marginalia= gives descriptions of items in the list.
|
||||||
|
|
Loading…
Add table
Reference in a new issue