pwsh中使用tmux
tmux本身并不能在windows上运行,但是有了wsl的存在一切就好办了,只要简单得用wsl tmux的方式就可以在win上运行。
但是本身wsl用的默认shell是bash,所以还需要再加点设置。我就在写了个wtmux的小函数,w本身是wsl的别名,通过tmux new-session 然后在启动的执行一些加载.tmux.conf的命令,最后在当前的pane切换到pwsh中。
function wtmux () { w tmux new-session "tmux source-file ~/.tmux.conf;bash -c pwsh.exe" }
其中.tmux.conf需要设置下面这段配置,使其在不同的系统中设置不同的shell,这样后续tmux创建不同的窗口的时候,默认的shell就变成pwsh了。
if-shell "grep Microsoft /proc/version" \ 'set default-shell "/mnt/c/Program Files/PowerShell/7/pwsh.exe"' if-shell "grep Linux /proc/version" \ 'set-option -g default-shell "/bin/bash"'
我还包装了一些wsl tmux相关的函数在pwsh中,方便在pwsh中直接调用
##pane function tmux-split-pane-horizontally { w tmux split-window -h } function tmux-split-pane-vertically { w tmux split-window -v } function tmux-last-pane { w tmux last-pane } function tmux-next-pane { w tmux select-pane -t :.+ } function tmux-prev-pane { w tmux select-pane -t :.- } ##window function tmux-new-window { param ( $window_name ) w tmux new-window -n "$window_name" } function tmux-kill-window { w tmux kill-window } function tmux-last-window { w tmux last-window } function tmux-next-window { w tmux next-window } function tmux-prev-window { w tmux prev-window } ##session function tmux-list-sessions { w tmux list-sessions } function tmux-new-session { param ( $session_name ) w tmux new-session -s "$session_name" } function tmux-kill-session { param ( $session_name ) w tmux kill-session -t "$session_name" } #sendkey function tmux-send-keys { param ( $cmd ) w tmux send-keys $cmd Enter }