From e1040cdbf9d2a7b15a6ec5fc2bc4bf320295b6a7 Mon Sep 17 00:00:00 2001 From: Gydo Makkinga Date: Wed, 2 Nov 2016 12:10:31 +0100 Subject: [PATCH 1/3] Update todo.cson --- snippets/todo.cson | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/snippets/todo.cson b/snippets/todo.cson index 7ae914b..732b0a1 100644 --- a/snippets/todo.cson +++ b/snippets/todo.cson @@ -26,6 +26,9 @@ 'question': 'prefix': 'question' 'body': '# QUESTION: $0' + 'remove': + 'prefix': 'remove' + 'body': '# REMOVE: $0' '.text.haml': 'todo': @@ -55,6 +58,9 @@ 'question': 'prefix': 'question' 'body': '-# QUESTION: $0' + 'remove': + 'prefix': 'remove' + 'body': '-# REMOVE: $0' '.text.html.ruby, .text.erb': 'todo': @@ -84,6 +90,9 @@ 'question': 'prefix': 'question' 'body': '<%# QUESTION: $0 %>' + 'remove': + 'prefix': 'remove' + 'body': '<%# REMOVE: $0 %>' '.text.html.ruby .meta,tag, .text.erb .meta.tag': 'todo': @@ -104,6 +113,8 @@ 'prefix': 'bug' 'question': 'prefix': 'question' + 'remove': + 'prefix': 'remove' '.html.basic': 'todo': @@ -133,6 +144,9 @@ 'question': 'prefix': 'question' 'body': '' + 'remove': + 'prefix': 'remove' + 'body': '' '.html.basic .meta.tag': 'todo': @@ -153,6 +167,8 @@ 'prefix': 'bug' 'question': 'prefix': 'question' + 'remove': + 'prefix': 'remove' '.source.scss, .source.sass, .source.css.scss, .source.css.sass, .source.css.less, .source.js, .source.go, .source.scala, .source.ts, .source.php': 'todo': @@ -182,6 +198,9 @@ 'question': 'prefix': 'question' 'body': '// QUESTION: $0' + 'remove': + 'prefix': 'remove' + 'body': '// REMOVE: $0' '.source.css': 'todo': @@ -211,6 +230,9 @@ 'question': 'prefix': 'question' 'body': '/* QUESTION: $0 */' + 'remove': + 'prefix': 'remove' + 'body': '/* REMOVE: $0 */' '.source.css .meta.property-value': 'todo': @@ -231,6 +253,8 @@ 'prefix': 'bug' 'question': 'prefix': 'question' + 'remove': + 'prefix': 'remove' '.text.html.php': 'todo': @@ -260,3 +284,6 @@ 'question': 'prefix': 'question' 'body': '$0' + 'remove': + 'prefix': 'remove' + 'body': '$0' From 489d6b750f82f1391deb00b5a5c4f70a78398ac7 Mon Sep 17 00:00:00 2001 From: Gydo Makkinga Date: Wed, 2 Nov 2016 12:11:52 +0100 Subject: [PATCH 2/3] Update todo.cson --- grammars/todo.cson | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grammars/todo.cson b/grammars/todo.cson index 24add53..0f1b5b3 100644 --- a/grammars/todo.cson +++ b/grammars/todo.cson @@ -3,7 +3,7 @@ 'injectionSelector': 'comment, text.plain' 'patterns': [ { - 'match': '(? Date: Wed, 2 Nov 2016 12:12:54 +0100 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 16aef33..7b08320 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![Windows Build Status](https://ci.appveyor.com/api/projects/status/gcgb9m7h146lv6qp/branch/master?svg=true)](https://ci.appveyor.com/project/Atom/language-todo/branch/master) [![Dependency Status](https://david-dm.org/atom/language-todo.svg)](https://david-dm.org/atom/language-todo) -Adds syntax highlighting to `TODO`, `FIXME`, `CHANGED`, `XXX`, `IDEA`, `HACK`, `NOTE`, `REVIEW`, `NB` and `BUG` in comments +Adds syntax highlighting to `TODO`, `FIXME`, `CHANGED`, `XXX`, `IDEA`, `HACK`, `NOTE`, `REVIEW`, `NB`, `BUG` and `REMOVE` in comments and text in Atom. Originally [converted](http://flight-manual.atom.io/hacking-atom/sections/converting-from-textmate) from the [TODO TextMate bundle](https://github.com/textmate/todo.tmbundle).