Skip to content

Commit

Permalink
fix: task tags are ignored if not at the start of a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
sebthom committed May 15, 2023
1 parent 2f74ddf commit 2197fc5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion org.eclipse.tm4e.ui/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Bundle-Name: %pluginName
Bundle-Vendor: %providerName
Bundle-Localization: plugin
Bundle-SymbolicName: org.eclipse.tm4e.ui;singleton:=true
Bundle-Version: 0.6.3.qualifier
Bundle-Version: 0.6.4.qualifier
Require-Bundle: org.eclipse.tm4e.core;bundle-version="0.5.2",
org.eclipse.jface.text,
org.eclipse.core.runtime,
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.tm4e.ui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@

<artifactId>org.eclipse.tm4e.ui</artifactId>
<packaging>eclipse-plugin</packaging>
<version>0.6.3-SNAPSHOT</version>
<version>0.6.4-SNAPSHOT</version>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public static void reloadMarkerConfigs() {
MARKERCONFIG_BY_TAG.put(markerConfig.tag, markerConfig);
}
TAG_SELECTOR_PATTERN = Pattern
.compile("^\\s*(" + MARKERCONFIG_BY_TAG.keySet().stream().collect(Collectors.joining("|")) + ")\\b");
.compile("^\\b*(" + MARKERCONFIG_BY_TAG.keySet().stream().collect(Collectors.joining("|")) + ")\\b");
}
}

Expand Down

0 comments on commit 2197fc5

Please sign in to comment.