1

I use emacs a lot, and type C-x s to save there. When I am in vim running inside tmux on a remote machine, if I accidentally type C-x s, the vim instance completely freezes up, and the only way out is to send tmux the kill-pane command.

How can I configure vim/tmux to block this from happening?

tlehman
  • 581

1 Answers1

3

@thrig answered my question, I can type C-q to get out of the frozen state I was in. Thank you!

tlehman
  • 581
  • This is an interesting difference between VIM and NeoVIM. NeoVIM's raw mode turns off flow control special character processing in the line discipline. VIM's leaves it on. – JdeBP Sep 12 '18 at 01:19
  • I've been wondering how neovim is different than vim, thanks for sharing! – tlehman Sep 12 '18 at 02:16