Skip to content

Commit

Permalink
Remove comma separation by default
Browse files Browse the repository at this point in the history
  • Loading branch information
jmilldotdev committed Apr 6, 2022
1 parent 2f9512d commit 893c810
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class TagSuggest extends EditorSuggest<string> {
selectSuggestion(suggestion: string): void {
if (this.context) {
if (this.inline) {
suggestion = `${suggestion},`;
suggestion = `${suggestion}`;
} else {
suggestion = `${suggestion}\n -`;
}
Expand Down

0 comments on commit 893c810

Please sign in to comment.