mirror of
https://github.com/neovim/neovim.git
synced 2024-12-27 14:21:31 -07:00
editorconfig: Fix charset name #9070
According to https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties the possible values of the charset property are "latin1", "utf-8", "utf-16be", "utf-16le", or "utf-8-bom" (case insensitive), not "utf_8" It breaks https://github.com/sgur/vim-editorconfig/ for example.
This commit is contained in:
parent
4c57169745
commit
84fcba9b01
@ -5,7 +5,7 @@ indent_style = space
|
||||
indent_size = 2
|
||||
end_of_line = lf
|
||||
insert_final_newline = true
|
||||
charset = utf_8
|
||||
charset = utf-8
|
||||
|
||||
[{Makefile,**/Makefile,runtime/doc/*.txt}]
|
||||
indent_style = tab
|
||||
|
Loading…
Reference in New Issue
Block a user