diff options
| author | bard <[email protected]> | 2024-01-28 15:53:37 -0500 |
|---|---|---|
| committer | bard <[email protected]> | 2024-01-28 15:53:37 -0500 |
| commit | 435325a3abd9c860a3b73d262bdd3ff9f26677f2 (patch) | |
| tree | 9784b40477d1cee0a48cb94c6f017fb4cf6feb13 /bard-elisp | |
| parent | 6273fd998fa57f0cefc4cda71aaffbfcef0bd695 (diff) | |
open term native instead of program
Diffstat (limited to 'bard-elisp')
| -rw-r--r-- | bard-elisp/bard-terminal.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bard-elisp/bard-terminal.el b/bard-elisp/bard-terminal.el index 71aa7f4..4e7771c 100644 --- a/bard-elisp/bard-terminal.el +++ b/bard-elisp/bard-terminal.el @@ -1,9 +1,9 @@ -(defun open-terminal-in-current-directory () +(defun bard/open-terminal-in-current-directory () "Open a terminal in the current working directory." (interactive) (let ((default-directory default-directory)) - (start-process "st-terminal" nil "st"))) + (term "/bin/bash"))) -(global-set-key (kbd "C-c t") 'open-terminal-in-current-directory) +(global-set-key (kbd "C-c t") 'bard/open-terminal-in-current-directory) (provide 'bard-terminal.el) |
