Compare commits

...

2 Commits

Author SHA1 Message Date
Jeremy Dormitzer
7f6989cbdf Add s3ed 2021-02-22 19:36:56 -05:00
Jeremy Dormitzer
f855abbfe4 Clear vterm after exporting $EDITOR 2021-02-22 19:36:27 -05:00
2 changed files with 8 additions and 1 deletions

View File

@ -41,4 +41,9 @@
"AWS MFA failed, check *aws-mfa* buffer for details"))
(process-send-string proc (concat mfa-token "\n"))))
;; A dired interface to S3
(use-package s3ed
:commands (s3ed-find-file
s3ed-save-file))
(provide 'init-aws)

View File

@ -21,7 +21,9 @@
(use-package with-editor
:hook ((eshell-mode . with-editor-export-editor)
(shell-mode . with-editor-export-editor)
(vterm-mode . with-editor-export-editor))
(vterm-mode . (lambda ()
(with-editor-export-editor)
(vterm-clear))))
:commands (with-editor-async-shell-command
with-editor-shell-command))