Skip to content

Tags: lpil/neoformat

Tags

v0.4.0

Added autocompletion for filetypes with !

Now, :Neoformat! will complete available filetypes
And :Neoformat will still complete available formatters

v0.3.0

Added stdin option for formatters (sbdchd#16)

Before:

buffer --> /tmp/file --> formatter --> /tmp/file --> buffer

Now (with 'stdin': 1):

buffer --> formatter --> buffer

Removed job_control as it isn't necessary

Adjusted formatters that support stdin to have stdin option set to 1.

v0.2.0

Added check to make sure buffer is modifiable

Check &modifiable before starting neoformat

Also added logging to cmd definition

v0.1.1

added fix for composite filetypes

Now, instead of spitting an error message into (n)vim's messages,
the composite filetype is split and the first filetype is used.
e.g. `javascript.jsx` --> `javascript`

v0.1.0

update readme with vim compatibility

v0.0.1

added docs 🐋