Skip to content

Commit

Permalink
feat: add implementations code lens configuration option (#319)
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsonk authored Feb 8, 2021
1 parent abbe84a commit f30af80
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions client/src/interfaces.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export interface Settings {
enable: boolean;
/** Settings related to code lens. */
codeLens: {
implementations: boolean;
references: boolean;
referencesAllFunctions: boolean;
} | null;
Expand Down
10 changes: 10 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,16 @@
false
]
},
"deno.codeLens.implementations": {
"type": "boolean",
"default": false,
"markdownDescription": "Enables or disables the display of code lens information for implementations of items in the code.",
"scope": "window",
"examples": [
true,
false
]
},
"deno.codeLens.references": {
"type": "boolean",
"default": false,
Expand Down

0 comments on commit f30af80

Please sign in to comment.