Skip to content

Commit

Permalink
refactor: remove docs and procs about removed option (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
LumaKernel authored Oct 12, 2022
1 parent 1dd3872 commit b0ecd76
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 15 deletions.
14 changes: 0 additions & 14 deletions doc/vim-tsdetect.txt
Original file line number Diff line number Diff line change
Expand Up @@ -84,20 +84,6 @@ Default: >
}
<

------------------------------------------------------------------------------
*vim-tsdetect-options_tsdetect.doNothingIfConfigExists*

By default, in Node.js environment, tsdetect does not create a workspace
configuration (`.vim/coc-settings.json`). Set this `false` to create
configuration file whether the configuration exists.

Values: `boolean`
Default: >
{
"tsdetect.doNothingIfConfigExists": true
}
<

------------------------------------------------------------------------------
*vim-tsdetect-options_tsdetect.nodeOverride*

Expand Down
2 changes: 1 addition & 1 deletion src/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export interface Settings {
denoOverride: { [key: string]: unknown };
nodeOverride: { [key: string]: unknown };
}
export const settingsKeys = ['mode', 'doNotCreateOnNode', 'doNothingIfConfigExists', 'denoOverride', 'nodeOverride'];
export const settingsKeys = ['mode', 'doNotCreateOnNode', 'denoOverride', 'nodeOverride'];

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

0 comments on commit b0ecd76

Please sign in to comment.