From 195c5b44a704a0a5b12d19f18d0286a5975dc54f Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Thu, 24 Oct 2024 13:00:00 +0100 Subject: [PATCH] Automatically run the tests in a split when ...starting the project --- .tmux | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.tmux b/.tmux index 61789b7..7a4d376 100755 --- a/.tmux +++ b/.tmux @@ -8,6 +8,8 @@ tmux send-keys -t "$1:1" "nvim" Enter # 2. Server. tmux new-window -t "$1" -c "$PWD" tmux send-keys -t "$1:2" "docker compose up --remove-orphans" Enter +tmux split-window -t "$1:2" -v +tmux send-keys -t "$1:2.bottom" "./run test" Enter # 3. General shell use. tmux new-window -t "$1" -c "$PWD"