links: 010 Vim MOC
Ever want to save file without formatting or running prettier or eslint for coc.nvim
You can use this command
:noa w:noa ⇒ represents no action and w will just save the file
:noa - stands for no auto command.
This will write the file without triggering autocommands defined by the plugins
tags: vim
Toggle formatting a file manually Prevent Vim’s autocmd from running on write just once