diff options
author | Case Duckworth | 2022-01-28 17:24:13 -0600 |
---|---|---|
committer | Case Duckworth | 2022-01-28 17:24:13 -0600 |
commit | e0b879deaee93d5ba45cbfce27cb0944b4e4360b (patch) | |
tree | 5eec08acf5d674ede5beea7bda98ebc4a128e6be | |
parent | Whose birthday is it? (diff) | |
download | emacs-e0b879deaee93d5ba45cbfce27cb0944b4e4360b.tar.gz emacs-e0b879deaee93d5ba45cbfce27cb0944b4e4360b.zip |
Truncate lines in eshell
-rw-r--r-- | init.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/init.el b/init.el index d2c41dd..d22a44c 100644 --- a/init.el +++ b/init.el | |||
@@ -327,7 +327,8 @@ | |||
327 | (list "Prompt" | 327 | (list "Prompt" |
328 | (concat eshell-prompt-regexp | 328 | (concat eshell-prompt-regexp |
329 | "\\(.*\\)") | 329 | "\\(.*\\)") |
330 | 1)))) | 330 | 1)) |
331 | truncate-lines t)) | ||
331 | (set (make-local-variable (car setting)) (cdr setting))) | 332 | (set (make-local-variable (car setting)) (cdr setting))) |
332 | ;; Bind keys | 333 | ;; Bind keys |
333 | (dolist (binding '(("C-d" . +eshell-quit-or-delete-char))) | 334 | (dolist (binding '(("C-d" . +eshell-quit-or-delete-char))) |