美文网首页
tmux 使用总结

tmux 使用总结

作者: swapmem | 来源:发表于2017-10-21 17:01 被阅读10次

Tmux is a productivity enhancement tool that enables people to get rid of using mouse.
In Tmux we are concerning about 3 elements, which are session, window and pane. Let's see the basic operations on them.

Session management

  • create session
    tmux new [-s session-name]

  • attach session
    tmux attach [-t session-name]

  • check available sessions
    tmux ls

  • rename seesion
    prefix $

Window management

  • create window
    prefix c

  • rename window
    prefix ,

  • kill window
    prefix &

  • navigate window
    prefix 0..9
    long press prefix + L prefix + H

Pane management

  • create pane vertical
    prefix %

  • create pane horizontal
    prefix "

  • kill pane
    prefix C-d

  • resize pane
    prefix C-arrow
    prefix C-L
    prefix C-K
    prefix C-H
    prefix C-J

Enjoy mouse free development with Tmux. (update continuously...)

Reference
  1. Tmux configuration is cloned from .tmux

相关文章

  • tmux 使用总结

    Tmux is a productivity enhancement tool that enables peop...

  • Tmux 使用笔记

    Tmux 速成教程:技巧和调整Tmux 入门介绍多终端管理器TMUX使用详解 查看tmux版本 tmux -V 会...

  • tmux的分屏功能、会话不中断功能

    1)安装工具 在ubuntu系统中安装tmux工具 (2)使用tmux 分屏命令 1. 输入命令 tmux 使用...

  • tmux使用介绍

    tmux简介 tmux,升级版本的screen,可以进行屏幕切割,操作更加简单便捷。 tmux模块 tmux使用C...

  • 公司网络不好试试Tmux

    同事分享的很棒的工具: Tmux 使用 1. Tmux是什么 1.1 Tmux的作用 命令行的典型使用方式是,打开...

  • tmux分屏

    在ubuntu系统中使用sudo apt-get install tmux安装tmux工具 1,输入命令tmux使...

  • Alacritty 与 tmux 按键冲突

    问题 Alacritty 占用了 tmux 的前缀键导致 tmux 无法使用 解决 Alacritty 使用 he...

  • tmux和vim很配哦:使用vim风格的快捷键

    tmux快捷键 tmux默认使用emacs模式的快捷键,这对我们使用vim的用户其实很不友好,而且我们认为tmux...

  • 2020-02-21 git 和 tmux

    1. tmux tmux的使用和配置 tmux使用手册 2. git 猴子都能看懂的git入门-git索引 git...

  • tmux使用教程

    Tmux使用手册:http://louiszhai.github.io/2017/09/30/tmux/

网友评论

      本文标题:tmux 使用总结

      本文链接:https://www.haomeiwen.com/subject/nhgiuxtx.html