🐛 Fix incorrect defaults #15
This commit is contained in:
parent
8937d6ea31
commit
ddaeb41d4d
1 changed files with 5 additions and 4 deletions
|
@ -3,11 +3,11 @@ export const DEFAULT_SETTINGS: BetterWordCountSettings = {
|
||||||
name: "default",
|
name: "default",
|
||||||
statusBarQuery: "{word_count} words {character_count} characters",
|
statusBarQuery: "{word_count} words {character_count} characters",
|
||||||
statusBarAltQuery:
|
statusBarAltQuery:
|
||||||
"{files} files {total_words} words {total_characters} characters",
|
"{file_count} files {total_word_count} words {total_character_count} characters",
|
||||||
},
|
},
|
||||||
statusBarQuery: "{word_count} words {character_count} characters",
|
statusBarQuery: "{word_count} words {character_count} characters",
|
||||||
statusBarAltQuery:
|
statusBarAltQuery:
|
||||||
"{files} files {total_words} words {total_characters} characters",
|
"{file_count} files {total_word_count} words {total_character_count} characters",
|
||||||
countComments: false,
|
countComments: false,
|
||||||
collectStats: false,
|
collectStats: false,
|
||||||
};
|
};
|
||||||
|
@ -17,12 +17,13 @@ export const PRESETS: PresetOption[] = [
|
||||||
name: "default",
|
name: "default",
|
||||||
statusBarQuery: "{word_count} words {character_count} characters",
|
statusBarQuery: "{word_count} words {character_count} characters",
|
||||||
statusBarAltQuery:
|
statusBarAltQuery:
|
||||||
"{files} files {total_words} words {total_characters} characters",
|
"{file_count} files {total_word_count} words {total_character_count} characters",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "minimal",
|
name: "minimal",
|
||||||
statusBarQuery: "w: {word_count} c: {character_count}",
|
statusBarQuery: "w: {word_count} c: {character_count}",
|
||||||
statusBarAltQuery: "f: {files} tw: {total_words} tc: {total_characters}",
|
statusBarAltQuery:
|
||||||
|
"f: {file_count} tw: {total_word_count} tc: {total_character_count}",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "custom",
|
name: "custom",
|
||||||
|
|
Loading…
Reference in a new issue