Skip to content

Commit b941c3d

Browse files
committed
Convert share_tokens_between_files flags to boolean values
1 parent 0fa437a commit b941c3d

1 file changed

Lines changed: 31 additions & 31 deletions

File tree

src/codestory/resources/language_config.json

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"((comment) @placeholder)",
4040
"(expression_statement (string) @placeholder)"
4141
],
42-
"share_tokens_between_files": "True"
42+
"share_tokens_between_files": true
4343
},
4444
"javascript": {
4545
"root_node_name": "program",
@@ -73,7 +73,7 @@
7373
"comment_queries": [
7474
"((comment) @placeholder)"
7575
],
76-
"share_tokens_between_files": "True"
76+
"share_tokens_between_files": true
7777
},
7878
"typescript": {
7979
"root_node_name": "program",
@@ -120,7 +120,7 @@
120120
"comment_queries": [
121121
"((comment) @placeholder)"
122122
],
123-
"share_tokens_between_files": "True"
123+
"share_tokens_between_files": true
124124
},
125125
"java": {
126126
"root_node_name": "program",
@@ -167,7 +167,7 @@
167167
"((line_comment) @placeholder)",
168168
"((block_comment) @placeholder)"
169169
],
170-
"share_tokens_between_files": "True"
170+
"share_tokens_between_files": true
171171
},
172172
"cpp": {
173173
"root_node_name": "translation_unit",
@@ -209,7 +209,7 @@
209209
"comment_queries": [
210210
"((comment) @placeholder)"
211211
],
212-
"share_tokens_between_files": "True"
212+
"share_tokens_between_files": true
213213
},
214214
"csharp": {
215215
"root_node_name": "compilation_unit",
@@ -253,7 +253,7 @@
253253
"comment_queries": [
254254
"((comment) @placeholder)"
255255
],
256-
"share_tokens_between_files": "True"
256+
"share_tokens_between_files": true
257257
},
258258
"go": {
259259
"root_node_name": "source_file",
@@ -298,7 +298,7 @@
298298
"comment_queries": [
299299
"((comment) @placeholder)"
300300
],
301-
"share_tokens_between_files": "True"
301+
"share_tokens_between_files": true
302302
},
303303
"rust": {
304304
"root_node_name": "source_file",
@@ -349,7 +349,7 @@
349349
"((line_comment) @placeholder)",
350350
"((block_comment) @placeholder)"
351351
],
352-
"share_tokens_between_files": "True"
352+
"share_tokens_between_files": true
353353
},
354354
"ruby": {
355355
"root_node_name": "program",
@@ -393,7 +393,7 @@
393393
"comment_queries": [
394394
"((comment) @placeholder)"
395395
],
396-
"share_tokens_between_files": "True"
396+
"share_tokens_between_files": true
397397
},
398398
"php": {
399399
"root_node_name": "",
@@ -438,7 +438,7 @@
438438
"comment_queries": [
439439
"((comment) @placeholder)"
440440
],
441-
"share_tokens_between_files": "True"
441+
"share_tokens_between_files": true
442442
},
443443
"swift": {
444444
"root_node_name": "source_file",
@@ -477,7 +477,7 @@
477477
"((comment) @placeholder)",
478478
"((multiline_comment) @placeholder)"
479479
],
480-
"share_tokens_between_files": "True"
480+
"share_tokens_between_files": true
481481
},
482482
"kotlin": {
483483
"root_node_name": "source_file",
@@ -515,7 +515,7 @@
515515
"((line_comment) @placeholder)",
516516
"((multiline_comment) @placeholder)"
517517
],
518-
"share_tokens_between_files": "True"
518+
"share_tokens_between_files": true
519519
},
520520
"scala": {
521521
"root_node_name": "compilation_unit",
@@ -559,7 +559,7 @@
559559
"((comment) @placeholder)",
560560
"((block_comment) @placeholder)"
561561
],
562-
"share_tokens_between_files": "True"
562+
"share_tokens_between_files": true
563563
},
564564
"r": {
565565
"root_node_name": "program",
@@ -580,7 +580,7 @@
580580
"comment_queries": [
581581
"((comment) @placeholder)"
582582
],
583-
"share_tokens_between_files": "True"
583+
"share_tokens_between_files": true
584584
},
585585
"lua": {
586586
"root_node_name": "chunk",
@@ -610,7 +610,7 @@
610610
"comment_queries": [
611611
"((comment) @placeholder)"
612612
],
613-
"share_tokens_between_files": "True"
613+
"share_tokens_between_files": true
614614
},
615615
"dart": {
616616
"root_node_name": "program",
@@ -648,7 +648,7 @@
648648
"((comment) @placeholder)",
649649
"((documentation_comment) @placeholder)"
650650
],
651-
"share_tokens_between_files": "True"
651+
"share_tokens_between_files": true
652652
},
653653
"elixir": {
654654
"root_node_name": "source_file",
@@ -671,7 +671,7 @@
671671
"comment_queries": [
672672
"((comment) @placeholder)"
673673
],
674-
"share_tokens_between_files": "True"
674+
"share_tokens_between_files": true
675675
},
676676
"haskell": {
677677
"root_node_name": [
@@ -707,7 +707,7 @@
707707
"((comment) @placeholder)",
708708
"((pragma) @placeholder)"
709709
],
710-
"share_tokens_between_files": "False"
710+
"share_tokens_between_files": false
711711
},
712712
"ocaml": {
713713
"root_node_name": "compilation_unit",
@@ -737,7 +737,7 @@
737737
"comment_queries": [
738738
"((comment) @placeholder)"
739739
],
740-
"share_tokens_between_files": "False"
740+
"share_tokens_between_files": false
741741
},
742742
"erlang": {
743743
"root_node_name": "source_file",
@@ -767,7 +767,7 @@
767767
"comment_queries": [
768768
"((comment) @placeholder)"
769769
],
770-
"share_tokens_between_files": "True"
770+
"share_tokens_between_files": true
771771
},
772772
"clojure": {
773773
"root_node_name": "source",
@@ -789,7 +789,7 @@
789789
"((comment) @placeholder)",
790790
"((dis_expr) @placeholder)"
791791
],
792-
"share_tokens_between_files": "True"
792+
"share_tokens_between_files": true
793793
},
794794
"solidity": {
795795
"root_node_name": "source_file",
@@ -830,7 +830,7 @@
830830
"comment_queries": [
831831
"((comment) @placeholder)"
832832
],
833-
"share_tokens_between_files": "True"
833+
"share_tokens_between_files": true
834834
},
835835
"julia": {
836836
"root_node_name": "source_file",
@@ -876,7 +876,7 @@
876876
"((line_comment) @placeholder)",
877877
"((block_comment) @placeholder)"
878878
],
879-
"share_tokens_between_files": "True"
879+
"share_tokens_between_files": true
880880
},
881881
"bash": {
882882
"root_node_name": "program",
@@ -905,7 +905,7 @@
905905
"comment_queries": [
906906
"((comment) @placeholder)"
907907
],
908-
"share_tokens_between_files": "True"
908+
"share_tokens_between_files": true
909909
},
910910
"c": {
911911
"root_node_name": "translation_unit",
@@ -951,7 +951,7 @@
951951
"comment_queries": [
952952
"((comment) @placeholder)"
953953
],
954-
"share_tokens_between_files": "True"
954+
"share_tokens_between_files": true
955955
},
956956
"toml": {
957957
"root_node_name": "document",
@@ -975,7 +975,7 @@
975975
"comment_queries": [
976976
"((comment) @placeholder)"
977977
],
978-
"share_tokens_between_files": "False"
978+
"share_tokens_between_files": false
979979
},
980980
"json": {
981981
"root_node_name": "document",
@@ -993,7 +993,7 @@
993993
"named_scope": []
994994
},
995995
"comment_queries": [],
996-
"share_tokens_between_files": "False"
996+
"share_tokens_between_files": false
997997
},
998998
"yaml": {
999999
"root_node_name": "stream",
@@ -1013,7 +1013,7 @@
10131013
"comment_queries": [
10141014
"((comment) @placeholder)"
10151015
],
1016-
"share_tokens_between_files": "False"
1016+
"share_tokens_between_files": false
10171017
},
10181018
"markdown": {
10191019
"root_node_name": "document",
@@ -1029,7 +1029,7 @@
10291029
"comment_queries": [
10301030
"((html_block) @placeholder)"
10311031
],
1032-
"share_tokens_between_files": "False"
1032+
"share_tokens_between_files": false
10331033
},
10341034
"rst": {
10351035
"root_node_name": "document",
@@ -1045,7 +1045,7 @@
10451045
"comment_queries": [
10461046
"((comment) @placeholder)"
10471047
],
1048-
"share_tokens_between_files": "False"
1048+
"share_tokens_between_files": false
10491049
},
10501050
"html": {
10511051
"root_node_name": "document",
@@ -1067,6 +1067,6 @@
10671067
"comment_queries": [
10681068
"((comment) @placeholder)"
10691069
],
1070-
"share_tokens_between_files": "False"
1070+
"share_tokens_between_files": false
10711071
}
10721072
}

0 commit comments

Comments
 (0)