6

I am using vifm inside tmux on Ubuntu 14.10. It looks great outside of tmux but inside tmux I have a problem with a highlighting line. I had almost the same problem with vim (vim in tmux background color changes when paging) but after applying :set t_ut= it works now.

Here is how vifm looks inside tmux (the highlighting line is supposed to take a whole line) enter image description here

Community
  • 1
  • 1
bradb
  • 133
  • 6
  • What's the value of `$TERM` inside `tmux` session? There is no `:set t_ut=` solution in this case as vifm relies on ncurses to interact with terminal, while vim does this on its own. Still it partially depends on your color scheme and `$TERM`. – xaizek Apr 17 '15 at 13:27
  • The value of `$TERM` was `xterm-256color`. I changed it to `screen-256color`. Now it works. Thank @xaizek for the hint. – bradb Apr 18 '15 at 15:11

1 Answers1

5

The value of $TERM inside tmux session was xterm-256color. I changed it to screen-256color. Now it works. Thanks @xaizek for the hint.

bradb
  • 133
  • 6