@zq-silk/yui 0.0.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/tmux/tmuxManager.js +2 -1
- package/package.json +1 -1
package/dist/tmux/tmuxManager.js
CHANGED
|
@@ -385,7 +385,8 @@ function launchCommand(launch) {
|
|
|
385
385
|
function isExplicitlyAbsentTmuxSession(error) {
|
|
386
386
|
if (!(error instanceof CommandExecutionError))
|
|
387
387
|
return false;
|
|
388
|
-
return /can't find (?:session|window|pane)|no server running/i
|
|
388
|
+
return /can't find (?:session|window|pane)|no server running|error connecting to .+ \(No such file or directory\)/i
|
|
389
|
+
.test(error.stderr);
|
|
389
390
|
}
|
|
390
391
|
function tmuxWord(value) {
|
|
391
392
|
return JSON.stringify(value);
|