注意:本文内容适用于 Tmux 2.3 及以上的版本,但是绝大部分的特性低版本也都适用,鼠标支持、VI 模式、插件管理在低版本可能会与本文不兼容。
启动新会话:
tmux [new -s 会话名 -n 窗口名]
恢复会话:
| port: 7890 | |
| socks-port: 7891 | |
| redir-port: 7892 | |
| allow-lan: true | |
| mode: Rule | |
| log-level: info | |
| external-controller: 0.0.0.0:9090 | |
| secret: "xxxxxx" | |
| dns: | |
| enable: true |
| #!/usr/bin/env python3 | |
| # coding=utf-8 | |
| import json | |
| from ansible.executor.task_queue_manager import TaskQueueManager | |
| from ansible.inventory import Inventory | |
| from ansible.inventory.group import Group | |
| from ansible.inventory.host import Host | |
| from ansible.parsing.dataloader import DataLoader | |
| from ansible.playbook.play import Play |
This is a run down of my process for designing, building and testing responsive HTML emails. I’ve also included lots of links to articles and resources for further reading.
这篇文章是我对我的响应式HTML Email设计、构建和测试的流程的一个系统性的介绍。在本文中,我也加入了大量的相关文章、资源的链接,供读者阅读参考。
| # 0 is too far from ` ;) | |
| set -g base-index 1 | |
| # Automatically set window title | |
| set-window-option -g automatic-rename on | |
| set-option -g set-titles on | |
| #set -g default-terminal screen-256color | |
| set -g status-keys vi | |
| set -g history-limit 10000 |