Skip to content

Commit b6110c4

Browse files
committed
refactor: remove docs and procs about removed option
1 parent 1dd3872 commit b6110c4

File tree

2 files changed

+1
-15
lines changed

2 files changed

+1
-15
lines changed

doc/vim-tsdetect.txt

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -84,20 +84,6 @@ Default: >
8484
}
8585
<
8686

87-
------------------------------------------------------------------------------
88-
*vim-tsdetect-options_tsdetect.doNothingIfConfigExists*
89-
90-
By default, in Node.js environment, tsdetect does not create a workspace
91-
configuration (`.vim/coc-settings.json`). Set this `false` to create
92-
configuration file whether the configuration exists.
93-
94-
Values: `boolean`
95-
Default: >
96-
{
97-
"tsdetect.doNothingIfConfigExists": true
98-
}
99-
<
100-
10187
------------------------------------------------------------------------------
10288
*vim-tsdetect-options_tsdetect.nodeOverride*
10389

src/settings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export interface Settings {
1212
denoOverride: { [key: string]: unknown };
1313
nodeOverride: { [key: string]: unknown };
1414
}
15-
export const settingsKeys = ['mode', 'doNotCreateOnNode', 'doNothingIfConfigExists', 'denoOverride', 'nodeOverride'];
15+
export const settingsKeys = ['mode', 'doNotCreateOnNode', 'denoOverride', 'nodeOverride'];
1616

1717
export const getSettings = (): Settings => {
1818
const settings = workspace.getConfiguration(EXTENSION_NS);

0 commit comments

Comments
 (0)