8

In the last days i became very addicted of using the combination terminator (in full screen) + screen + vim. But i'm having problems with the ctrl + right and ctrl + left key mappings, they are erasing text instead of jumping words. I already checked and it works as expected when using only terminator and vim.

Somebody know how to fix this issue?

Thanks in advance

Dimas Kotvan
  • 241
  • 3
  • 7

2 Answers2

7

It's probably due to TERM being set to screen. If using bash, try:

export TERM=xterm

before running vim.

Note this might have other consequences, so you might want to try other terminals if that's the case.

icyrock.com
  • 1,190
  • 10
  • 17
4

You can also use :set term=xterm inside of vim

sirlark
  • 211
  • 2
  • 12