Skip to content

Commit 1f2733f

Browse files
committed
Add Matlab support.
1 parent a3dd359 commit 1f2733f

6 files changed

Lines changed: 8 additions & 3 deletions

File tree

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@
66
"search.exclude": {
77
"out": true // set this to false to include "out" folder in search results
88
},
9-
"typescript.tsdk": "./node_modules/typescript/lib" // we want to use the TS server from our node_modules folder to control its version
9+
"typescript.tsdk": "./node_modules/typescript/lib",
10+
"editor.renderWhitespace": "boundary" // we want to use the TS server from our node_modules folder to control its version
1011
}

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 1.8.7
2+
- Add support for Matlab.
3+
14
## 1.8.6
25
- Fix issue 36: detect TODO at the end of a code line.
36
- Fix issue 44: other languages not work well with the default markers.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ If `true`, automatically add the default "TODO" marker. Default is `true`.
101101

102102
## Supported languages
103103
Java, Javascript, C#, C, C++, F#, Python, Ruby, Coffee Script, R, Haskell, Lua, Go, Perl,
104-
Markdown, Css, Scss, Less, Latex, Typescript, Elixir, Shell Script, Twig, Visual Basic.
104+
Markdown, Css, Scss, Less, Latex, Typescript, Elixir, Shell Script, Twig, Visual Basic, Matlab.
105105

106106
*Note that multi-line comment style is only supported in languages that have the syntax in the example.*
107107

1020 KB
Binary file not shown.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-todo-parser",
33
"displayName": "TODO Parser",
44
"description": "Parse TODOs in your working files.",
5-
"version": "1.8.6",
5+
"version": "1.8.7",
66
"publisher": "minhthai",
77
"engines": {
88
"vscode": "^1.2.0"

src/types/LanguageType.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,5 @@ export class LanguageName {
6363
static BASH = new LanguageType("shellscript", new RegexType(RG_PYTHON));
6464
static VB = new LanguageType("vb", new RegexType(RG_VB));
6565
static TWIG = new LanguageType("twig", new RegexType(RG_TWIG));
66+
static MATLAB = new LanguageType("matlab", new RegexType(RG_LATEX));
6667
}

0 commit comments

Comments
 (0)