zoukankan      html  css  js  c++  java
  • Tmux常用快捷键及命令

    Exported from workflowy!
    • tmux
      • session
        • start/create session
          - tmux
          - tmux new-session -s portage
        • listing sessions
          - tmux ls
          - tmux list-sessions
          - prefix s  
        • rename session
          - rename-session -t old new
          - prefix $  
        • detach client/session
          - prefix d  
        • resuming session
          - tmux a -t portage
          - tmux attach -t portage
      • window
        • create window
          - prefix c
        • switch window
          - prefix n = Change to the next window.
          - prefix p = Change to the previous window.
          - prefix l = Move to the previously selected window.
          - prefix 0-9 = Select windows 0 to 9.
          - prefix ' = Prompt for a window index to select. Then enter a number or title to switch to that window.
        • listing windows
          - prefix w
        • rename window
          - prefix ,
        • close window
          - prefix &
      • pane
        • split pane
          - prefix " = Split the current pane into two, top and bottom.
          - prefix% = Split the current pane into two, left and right.
        • switch pane
          - prefix o = Select the next pane in the current window.
          - prefix ; = Move to the previously active pane.
          - prefix { = Swap the current pane with the previous pane.
          - prefix } = Swap the current pane with the next pane.
        • arrange pane
          - prefix Alt+1 to Alt+5
          - prefix space
        • maxmize pane
          - prefix z
        • pane number
          - prefix q
        • kill pane
          - prefix x
        • break out pane
          - prefix !
  • 相关阅读:
    禅道 之 项目开发必备
    Cmd 命令大全
    Php 性能参数优化 及 Iptables 防火墙限制用户访问平率
    Nginx 性能参数优化
    Mysql 性能调优参数
    Postfix的工作原理
    python三次输入错误验证登录
    python shopping incomplete code
    MySQL + Atlas --- 部署读写分离
    网站流量分析项目day03
  • 原文地址:https://www.cnblogs.com/wonux/p/6627375.html
Copyright © 2011-2022 走看看