解决在 zsh 中使用 root 帐号遇到的麻烦

mlterm + zsh 普通用户的 Home、End 和 Ctrl+R 功能都正常,一旦切换到 root 账户就有问题。 解决办法是在~/.zshrc中添加: bindkey "^[OF" end-of-line bindkey "^[OH" beginning-of-line bindkey "^R"   history-incremental-search-backward 注意引号中间字符的输入方法: Ctrl+V End Ctrl+V Home Ctrl+V Ctrl+R

2007-08-14 · wuan

解决zsh在mlterm下用screen时homeend键功能异常的问题

FROM: http://lfod.us/dotfiles/zshrc # Make HOME and END work reasonably case $TERM in xterm*) bindkey "^[[F" end-of-line bindkey "^[[H" beginning-of-line ;; esac bindkey '\e[1~' beginning-of-line # Home bindkey '\e[4~' end-of-line # End bindkey '\e[3~' delete-char # Del bindkey '\e[2~' overwrite-mode # Insert bindkey -v

2007-03-16 · wuan

试用mlterm

mlterm,Made In Japan 安装 sudo apt-get install mlterm mlterm-tools 调整字体,仅当你用UTF-8 1$ vi ~/.mlterm/main -- 8< --- use_anti_alias = true -- 8< --- 含义是让mlterm使用aa字体 2$ sudo vi ~/.mlterm/aafont -- 8< --- # If you use UTF-8 but the range of characters is limited to ISO-8859-1, # you may use the following line instead of the above line. ISO10646_UCS2_1=Courier 10 Pitch-iso10646-1; # Simplified Chinese speakers may want to enable the following setting. ISO10646_UCS2_1_BIWIDTH=AR SungtiL GB-iso10646-1; -- 8< --- 无法激活fcitx 在极少数情况下,你也许会遇到fc...

2007-02-11 · wuan