美文网首页
iTerm2 小知识点

iTerm2 小知识点

作者: Talentisan | 来源:发表于2019-12-26 20:22 被阅读0次
    command + t 新建标签
    command + w 关闭标签
    command + 数字 command + 左右方向键    切换标签
    command + enter 切换全屏
    command + f 查找
    command + d 垂直分屏
    command + shift + d 水平分屏
    command + option + 方向键 command + [ 或 command + ]    切换屏幕
    command + ; 查看历史命令
    command + shift + h 查看剪贴板历史
    ctrl + u    清除当前行
    ctrl + l    清屏
    ctrl + a    到行首
    ctrl + e    到行尾
    ctrl + f/b  前进后退
    ctrl + p    上一条命令
    ctrl + r    搜索命令历史
    

    修改vim ~/.zshrc文件,在文件底部增加

    隐藏用户名和主机名
    prompt_context() {}
    
    
    只保留用户名,隐藏主机名
    prompt_context() {
      if [[ "$USER" != "$DEFAULT_USER" || -n "$SSH_CLIENT" ]]; then
        prompt_segment black default "%(!.%{%F{yellow}%}.)$USER"
      fi
    }
    
    
    只保留主机名,隐藏用户名
    prompt_context() {
      if [[ "$USER" != "$DEFAULT_USER" || -n "$SSH_CLIENT" ]]; then
        prompt_segment black default "%(!.%{%F{yellow}%}.)$HOST"
      fi
    }
    
    
    # 也可以使用自定义提示符
    prompt_context () {
      prompt_segment black default "hoo";
    }
    

    相关文章

      网友评论

          本文标题:iTerm2 小知识点

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