Remove sentence count as default #4

This commit is contained in:
Luke Leppan 2021-01-19 23:19:48 +02:00
parent 0dae8cc772
commit 137019ec8d

View file

@ -5,7 +5,7 @@ export class BetterWordCountSettings {
showCharacters: boolean = true;
charactersPrefix: string = "";
charactersSuffix: string = " characters ";
showSentences: boolean = true;
showSentences: boolean = false;
sentencesPrefix: string = "";
sentencesSuffix: string = " sentences";
}