Skip to content

Commit

Permalink
Remove space from commit characters
Browse files Browse the repository at this point in the history
- solves issues of #29
  • Loading branch information
mborik committed May 9, 2023
1 parent c1c2f2e commit 03a3ff6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/completionProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ export class Z80CompletionProvider extends ConfigPropsProvider implements vscode
const suffix = (!opt.formatOnType && secondArgument && opt.splitInstructionsByColon) ? opt.eol : '';

// commit characters are slightly different for second argument:
// comma is accepted in addition to space, tab and enter.
const commitChars = [' ', '\t', '\n'];
// comma is accepted in addition tab or enter.
const commitChars = ['\t', '\n'];
if (!secondArgument) {
commitChars.unshift(',');
}
Expand Down

0 comments on commit 03a3ff6

Please sign in to comment.