Skip to content

Commit 7c0006d

Browse files
committed
feat: Add todotxt syntax highlighting
1 parent f0d8470 commit 7c0006d

File tree

5 files changed

+904
-0
lines changed

5 files changed

+904
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ Syntax highlighting for
5252
- LLVM TableGen
5353
- terminfo
5454
- Thrift
55+
- todotxt
5556
- Typo3
5657
- VCard
5758
- Xresources / Xdefaults
@@ -106,6 +107,7 @@ Syntax highlighting for
106107
- [t4-support](https://github.com/zbecknell/t4-support) by zbecknell (MIT)
107108
- [vscode-infokey-plugin](https://github.com/UI-Apps/vscode-infokey-plugin) by UI-Apps (MIT)
108109
- [thrift.tmbundle](https://github.com/textmate/thrift.tmbundle) by textmate (custom)
110+
- [todotxt](https://github.com/dunstontc/vscode-todotxt) by dunstontc (MIT)
109111
- [vscode-typo3-typoscript](https://github.com/benjaminkott/vscode-typo3-typoscript) by benjaminkott (MIT)
110112
- [vscode-vcard](https://github.com/cstrachan88/vscode-vcard) by cstrachan88 (MIT)
111113
- [xresources](https://github.com/antcap96/xresources) by antcap96 (MIT)
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"comments": {},
3+
"brackets": [
4+
[
5+
"(",
6+
")"
7+
]
8+
],
9+
"autoClosingPairs": [
10+
[
11+
"(",
12+
")"
13+
],
14+
[
15+
"\"",
16+
"\""
17+
],
18+
[
19+
"'",
20+
"'"
21+
]
22+
],
23+
"surroundingPairs": [
24+
[
25+
"(",
26+
")"
27+
],
28+
[
29+
"\"",
30+
"\""
31+
],
32+
[
33+
"'",
34+
"'"
35+
]
36+
]
37+
}

package.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -684,6 +684,18 @@
684684
],
685685
"configuration": "./language-configuration/thrift.language-configuration.json"
686686
},
687+
{
688+
"id": "todo",
689+
"aliases": [
690+
"todo",
691+
"todo"
692+
],
693+
"extensions": [
694+
"todo.txt",
695+
"done.txt"
696+
],
697+
"configuration": "./language-configuration/todotxt.language-configuration.json"
698+
},
687699
{
688700
"id": "typoscript",
689701
"aliases": [
@@ -1093,6 +1105,11 @@
10931105
"scopeName": "source.thrift",
10941106
"path": "./syntaxes/thrift.tmLanguage.json"
10951107
},
1108+
{
1109+
"language": "todo",
1110+
"scopeName": "source.todo",
1111+
"path": "./syntaxes/todotxt.tmLanguage.json"
1112+
},
10961113
{
10971114
"language": "typoscript",
10981115
"scopeName": "source.typoscript",

0 commit comments

Comments
 (0)