lean use tmux

学习的资料来源

关于自己使用tmux的一些tips

  • 与zsh-autosuggestions的共用问题,在使用tmux的时候,autosuggesttion的提示变暗的情况会出现问题,导致非常难用,解决方法是这个:
1
2
echo  "export TERM=xterm-256color" >> ~/.zshrc
exec zsh
  • 分屏

    • 竖分屏:prefix + % 或 tmux split-window -h
    • 横分屏:prefix + “ 或 tmux split-window
  • 改变prefix的绑定按键

    • prefix是操作tmux的起手式, 默认是Ctrl-B,但这两个键距离过长。

    • 编辑~/.tmux.conf文件

      1
      set -g prefix C-x
  • 会话(Session)操作

    • 分离: tmux detach 或 prefix+d
    • 重新连接: tmux attach
    • 列出所有Session: tmux ls 或 prefix + s
    • 删除Session: tmux kill-session -t < id 或 名字 >