From 84fcba9b01a15a8defbae9ef2fa798cf55176af4 Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Sun, 30 Sep 2018 17:02:19 +0200 Subject: 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. --- .editorconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit