We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6051b5 commit c5215e9Copy full SHA for c5215e9
src/testdir/test_json.vim
@@ -1,5 +1,12 @@
1
" Test for JSON functions.
2
+
3
+" JSON requires using utf-8. Conversion breaks the asserts, therefore set
4
+" 'encoding' to utf-8.
5
+if !has('multi_byte')
6
+ finish
7
+endif
8
scriptencoding utf-8
9
+set encoding=utf-8
10
11
let s:json1 = '"str\"in\\g"'
12
let s:var1 = "str\"in\\g"
src/version.c
@@ -743,6 +743,8 @@ static char *(features[]) =
743
744
static int included_patches[] =
745
{ /* Add new patch number below this line */
746
+/**/
747
+ 1448,
748
/**/
749
1447,
750
0 commit comments