diff options
author | Matěj Cepl <mcepl@cepl.eu> | 2018-09-30 17:02:19 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-09-30 17:02:19 +0200 |
commit | 84fcba9b01a15a8defbae9ef2fa798cf55176af4 (patch) | |
tree | 702d4d899466841bed23748d246ca6b276407281 | |
parent | 4c5716974586e8c372a84df00f0e6f798424e712 (diff) | |
download | rneovim-84fcba9b01a15a8defbae9ef2fa798cf55176af4.tar.gz rneovim-84fcba9b01a15a8defbae9ef2fa798cf55176af4.tar.bz2 rneovim-84fcba9b01a15a8defbae9ef2fa798cf55176af4.zip |
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.
-rw-r--r-- | .editorconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.editorconfig b/.editorconfig index c0b80fdf47..b117784d13 100644 --- a/.editorconfig +++ b/.editorconfig @@ -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 |