34

I have the following line in my .vimrc to automatically beautify js files after I save them:

autocmd BufWritePost *.js :call JsBeautify()

I want this 99% of the time, but sometimes I just want to write without having this function called. Is there an easy way to do that?

Mateusz Piotrowski
  • 8,029
  • 10
  • 53
  • 79
Vlad the Impala
  • 15,572
  • 16
  • 81
  • 124

1 Answers1

61

I guess you're looking for :noa.

Usage:

:noa w

Excerpt from help:

:noautocmd :noa

To disable autocommands for just one command use the ":noautocmd" command modifier. This will set 'eventignore' to "all" for the duration of the following command. Example:

:noautocmd w fname.gz

This will write the file without triggering the autocommands defined by the gzip plugin.

Mateusz Piotrowski
  • 8,029
  • 10
  • 53
  • 79