diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2025-07-24 10:43:16 +0200 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2025-07-24 10:43:16 +0200 |
| commit | 8fab93143cf19067061153b9dd7401279dbe60d1 (patch) | |
| tree | e0790619da67de7b4f9b096e8a760c768b973408 | |
| parent | f32cd7b09d518b629bfaa3eeb92b539891c6b9bc (diff) | |
with-editor-export-editor: No longer add "clear" to shell history
We already to the same for "export".
Closes #135.
| -rw-r--r-- | lisp/with-editor.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/with-editor.el b/lisp/with-editor.el index 87eb9fb..9bfa34b 100644 --- a/lisp/with-editor.el +++ b/lisp/with-editor.el @@ -780,7 +780,7 @@ This works in `shell-mode', `term-mode', `eshell-mode' and (when-let ((v (getenv "EMACS_SERVER_FILE"))) (vterm-send-string (format " export EMACS_SERVER_FILE=%S" v)) (vterm-send-return)) - (vterm-send-string "clear") + (vterm-send-string " clear") (vterm-send-return)) (error "Cannot use sleeping editor in this buffer"))) (t |
