From a352abe7045ab22724b816f90066780d3ffa5f8d Mon Sep 17 00:00:00 2001 From: tdback Date: Wed, 12 Feb 2025 19:00:16 -0500 Subject: lisp: move eshell binding to shells module --- lisp/td-common.el | 1 - lisp/td-shell.el | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/td-common.el b/lisp/td-common.el index ae80872..e16f800 100644 --- a/lisp/td-common.el +++ b/lisp/td-common.el @@ -53,7 +53,6 @@ :bind (("M-c" . capitalize-dwim) ("M-u" . upcase-dwim) ("M-l" . downcase-dwim) - ("C-x E" . eshell) ("C-x M-t" . transpose-regions) ("C-g" . td/quit-if-not-in-macro))) diff --git a/lisp/td-shell.el b/lisp/td-shell.el index 328fb2e..88714aa 100644 --- a/lisp/td-shell.el +++ b/lisp/td-shell.el @@ -72,7 +72,8 @@ current line input." (use-package eshell :ensure nil :hook (eshell-first-time-mode . td/eshell-configure) - :bind (("C-l" . td/eshell-clear)) + :bind (("C-x E" . eshell) + ("C-l" . td/eshell-clear)) :config (td/meow-insert-state 'eshell-mode)) -- cgit v1.2.3