终端工具使用记录

ConEmu

ssh Linux 系统后,vim 卡住

  • 原因:不明
  • 规避:在 .bashrc 中 export TERM=xterm,默认 TERM 值为 linux

文本选取去空格

Settings -> Keys & Macro -> Mark/Copy -> Text selection,反选 Detect line ends,勾选 Trim trailing spaces

tmux

色彩问题

  • tmux -2
  • 在 .bashrc 中添加 alias tmux="tmux -2" 解决

vim 背景色问题

256 color support for vim background in tmux

.bashrc 配置:

1
2
3
4
5
6
7
8
9
10
11
12
13
if [[ -z $TMUX ]]; then
if [ -e /usr/share/terminfo/x/xterm+256color ]; then # may be xterm-256 depending on your distro
export TERM='xterm-256color'
else
export TERM='xterm'
fi
else
if [ -e /usr/share/terminfo/s/screen-256color-s ]; then
export TERM='screen-256color'
else
export TERM='screen'
fi
fi

如何翻页看 log (scroll 功能)

How do I scroll in tmux?

screen

Solve screen error “Cannot open your terminal ‘/dev/pts/0’ - please check”

原因:用 ssh 登一个账户,su - xxx 到另一个账户,再用 screen。