소스 검색

fix(tmux): add spaces between sessionx startup commands

The The `&&` separator in `concatStringsSep` was missing spaces, causing the tmux sessionx startup command to be malformed and fail. This change adds the required spaces.
Zander Hawke 10 달 전
부모
커밋
f85e009b5f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      home/features/cli/tmux.nix

+ 1 - 1
home/features/cli/tmux.nix

@@ -42,7 +42,7 @@ in
           set -g @sessionx-custom-paths-subdirectories true
           set -g @sessionx-custom-paths-subdirectories-depth 2
           set -g @sessionx-name-template '{-2}/{-1}'
-          set -g @sessionx-startup-command '${builtins.concatStringsSep "&&" [
+          set -g @sessionx-startup-command '${builtins.concatStringsSep " && " [
             "tmux new-window -n gemini -t {session}"
             "tmux new-window -n terminal -t {session}"
             "tmux rename-window -t {session}:1 editor"