From ba2fb4a82dd6fea5f5190f65dd2984aab9e04f11 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 15 May 2018 01:33:21 +0200 Subject: [PATCH] tools/eshell: remove custom aliases That belongs in my private module --- modules/tools/eshell/config.el | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/modules/tools/eshell/config.el b/modules/tools/eshell/config.el index e21fb562c..112af74bc 100644 --- a/modules/tools/eshell/config.el +++ b/modules/tools/eshell/config.el @@ -33,19 +33,9 @@ (add-hook 'eshell-mode-hook #'+eshell|init) (add-hook 'eshell-exit-hook #'+eshell|cleanup) - (after! em-alias - (setq eshell-command-aliases-list - (append eshell-command-aliases-list - '(("q" "exit") - ("l" "ls -1") - ("ll" "ls -l") - ("la" "ls -la") - ("g" "hub") - ("gs" "hub status --short ."))))) - (after! em-term - ;; Visual commands require a proper terminal. Eshell can't handle that, so it - ;; delegates these commands to a term buffer. + ;; Visual commands require a proper terminal. Eshell can't handle that, so + ;; it delegates these commands to a term buffer. (setq eshell-visual-commands (append eshell-visual-commands '("tmux" "htop" "bash" "zsh" "fish" "vim" "nvim")) eshell-visual-subcommands '(("git" "log" "l" "diff" "show"))))