We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed646be commit 21a011bCopy full SHA for 21a011b
multi-shell.el
@@ -76,16 +76,6 @@
76
"Return shell name's prefix."
77
(format "*%s: <" multi-shell-prefer-shell-type))
78
79
-(defun multi-shell-opened-p ()
80
- "Check if at least one shell opened."
81
- (let ((index 0) (shell-list (multi-shell-select-list)) (break nil) (opened nil))
82
- (while (and (< index (length multi-shell--live-shells)) (not break))
83
- (when (get-process (nth index shell-list))
84
- (setq opened t)
85
- (setq break t))
86
- (setq index (1+ index)))
87
- opened))
88
-
89
(defun multi-shell--cycle-delta-live-shell-list (st val)
90
"Cycle through the live shell list the delta VAL and ST."
91
(let ((target-index (+ st val)))
0 commit comments