美文网首页
Vim tmux下显示问题解决方案

Vim tmux下显示问题解决方案

作者: letcoda | 来源:发表于2018-11-01 17:29 被阅读17次

tmux 下 vim 显示色块,不能完整显示颜色,vim8 以上版本解决了此问题,注意注释下面两种配置

  1. 使用term

    if exists('$TMUX')
        set term=screen-256color
    endif
    
  2. 禁用背景色

    if &term =~ '256color'
      " disable Background Color Erase (BCE) so that color schemes
      " render properly when inside 256-color tmux and GNU screen.
      " see also http://snk.tuxfamily.org/log/vim-256color-bce.html
      set t_ut=
    endif
    

相关文章

网友评论

      本文标题:Vim tmux下显示问题解决方案

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