aboutsummaryrefslogtreecommitdiff
path: root/bard-elisp/bard-terminal.el
diff options
context:
space:
mode:
authorbard <[email protected]>2024-01-28 15:53:37 -0500
committerbard <[email protected]>2024-01-28 15:53:37 -0500
commit435325a3abd9c860a3b73d262bdd3ff9f26677f2 (patch)
tree9784b40477d1cee0a48cb94c6f017fb4cf6feb13 /bard-elisp/bard-terminal.el
parent6273fd998fa57f0cefc4cda71aaffbfcef0bd695 (diff)
open term native instead of program
Diffstat (limited to 'bard-elisp/bard-terminal.el')
-rw-r--r--bard-elisp/bard-terminal.el6
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)