system changes
This commit is contained in:
parent
f8953990dc
commit
97be78ce35
1 changed files with 1 additions and 9 deletions
|
@ -314,21 +314,13 @@ Install and configure =eat= as a terminal emulator in Emacs.
|
|||
(use-package eat
|
||||
:init
|
||||
(setopt eat-kill-buffer-on-exit t)
|
||||
(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)))
|
||||
;;(add-to-list 'eshell-modules-list 'eshell-rebind)
|
||||
:config
|
||||
(eat-eshell-mode)
|
||||
(setq eshell-visual-commands '())
|
||||
:hook
|
||||
(eat-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 "la" "ls -a $@*")
|
||||
(eshell/alias "l" "ls -F $@*")))
|
||||
|
|
Loading…
Add table
Reference in a new issue