aboutsummaryrefslogtreecommitdiff
path: root/bard-elisp/bard-terminal.el
diff options
context:
space:
mode:
authorbard <[email protected]>2024-04-03 17:27:19 -0400
committerbard <[email protected]>2024-04-03 17:27:19 -0400
commit7e6885a85be99e25d12920806e7d4fc04a8bada0 (patch)
tree19b6b4acd547fc6cb2f2cc6b8303cb51c3da514e /bard-elisp/bard-terminal.el
parenteb7c3add94be07625fc7002b4cf91ea6643697fd (diff)
condensed into a file
Diffstat (limited to 'bard-elisp/bard-terminal.el')
-rw-r--r--bard-elisp/bard-terminal.el18
1 files changed, 0 insertions, 18 deletions
diff --git a/bard-elisp/bard-terminal.el b/bard-elisp/bard-terminal.el
deleted file mode 100644
index 23f273c..0000000
--- a/bard-elisp/bard-terminal.el
+++ /dev/null
@@ -1,18 +0,0 @@
-(defun bard/open-terminal-in-current-directory ()
- "Open a terminal in the current working directory."
- (interactive)
- (let ((default-directory default-directory))
- (term "/bin/bash")))
-
-(define-key global-map (kbd "C-t") #'bard/open-terminal-in-current-directory)
-(define-key global-map (kbd "C-z t") #'bard/open-terminal-in-current-directory)
-
-(defun bard/open-terminal-emulator ()
- "Open a terminal in the current working directory."
- (interactive)
- (let ((default-directory default-directory))
- (start-process "st terminal" nil "st")))
-
-(define-key global-map (kbd "C-z C-t") 'bard/open-terminal-emulator)
-
-(provide 'bard-terminal.el)