diff options
author | bd <bdunahu@colostate.edu> | 2024-05-21 23:47:19 -0600 |
---|---|---|
committer | bd <bdunahu@colostate.edu> | 2024-05-21 23:47:19 -0600 |
commit | 817fc10ea1bc4377e99c0f82dbc2e161179b0b3e (patch) | |
tree | 7a34f0b9c296fb7cb87983ee9d72667dafdc1c65 /.config/emacs/modules/bd--tabs.el | |
parent | 9004f1eb0087e1e345642e2f50f312c4a467b890 (diff) |
Remove contextual shell for now
Diffstat (limited to '.config/emacs/modules/bd--tabs.el')
-rw-r--r-- | .config/emacs/modules/bd--tabs.el | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/.config/emacs/modules/bd--tabs.el b/.config/emacs/modules/bd--tabs.el index e5e11f9..f85c226 100644 --- a/.config/emacs/modules/bd--tabs.el +++ b/.config/emacs/modules/bd--tabs.el @@ -41,16 +41,6 @@ (keymap-global-set "C-x p v" 'magit-project-status) -(defun bd/contextual-shell () - "Opens the current project's shell, -or a default shell if no project is open." - (interactive) - (let ((project (project-current))) - (if project - (project-shell) - (shell)))) - - (setq tab-bar-tab-name-function #'bd/tab-bar-name-function) |