Add Page-Related Settings
This commit is contained in:
parent
566f8531b5
commit
547fb32f95
1 changed files with 3 additions and 0 deletions
|
@ -2,6 +2,7 @@ export enum MetricCounter {
|
|||
words,
|
||||
characters,
|
||||
sentences,
|
||||
pages,
|
||||
files,
|
||||
}
|
||||
|
||||
|
@ -38,6 +39,7 @@ export interface BetterWordCountSettings {
|
|||
altBar: StatusBarItem[];
|
||||
countComments: boolean;
|
||||
collectStats: boolean;
|
||||
pageWords: number;
|
||||
}
|
||||
|
||||
export const DEFAULT_SETTINGS: BetterWordCountSettings = {
|
||||
|
@ -71,4 +73,5 @@ export const DEFAULT_SETTINGS: BetterWordCountSettings = {
|
|||
],
|
||||
countComments: false,
|
||||
collectStats: false,
|
||||
pageWords: 300,
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue