0

I added Syntastic plugin to Vim: https://github.com/vim-syntastic/syntastic.

When I write code and type: ":w", I do get an error check that looks like this: enter image description here

What do I have to do to return to the state where I was before watching the error mode? I just want to return to "regular" insert mode in vim.

lcd047
  • 5,731
  • 2
  • 28
  • 38
CrazySynthax
  • 13,662
  • 34
  • 99
  • 183

1 Answers1

0

I found the answer: press ESC key and then type:

:lclose

CrazySynthax
  • 13,662
  • 34
  • 99
  • 183
  • 2
    That would just close the error window. It wouldn't "return [you] to the state where [you were] before watching the error mode". You need `:SyntasticReset`. – lcd047 Mar 26 '17 at 17:43