Skip to content

Commit

Permalink
Fixes #342
Browse files Browse the repository at this point in the history
  • Loading branch information
isc-bsaviano committed Aug 27, 2024
1 parent e7ab93d commit cc125cb
Show file tree
Hide file tree
Showing 4 changed files with 90 additions and 62 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- Fix issue [#339](https://github.com/intersystems/language-server/issues/339): Macro intellisense doesn't respect `#undef` directive
- Fix issue [#340](https://github.com/intersystems/language-server/issues/340): Add folding ranges for C-style block comments
- Fix issue [#341](https://github.com/intersystems/language-server/issues/341): Improve macro hover documentation
- Fix issue [#342](https://github.com/intersystems/language-server/issues/342): Reduce clutter in class and class member completion lists by default

## [2.5.1] - 2024-07-09
- Fix issue [#328](https://github.com/intersystems/language-server/issues/328): Fix namespace detection for Diagnostic computation
Expand Down
12 changes: 12 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,18 @@
"type": "boolean",
"default": true,
"description": "Controls whether diagnostics are provided when a local variable may be undefined."
},
"intersystems.language-server.completion.showInternal": {
"scope": "window",
"type": "boolean",
"default": false,
"markdownDescription": "Controls whether class members with the `Internal` keyword are shown in completion lists."
},
"intersystems.language-server.completion.showGenerated": {
"scope": "window",
"type": "boolean",
"default": false,
"description": "Controls whether generated classes and class members are shown in completion lists."
}
}
},
Expand Down
Loading

0 comments on commit cc125cb

Please sign in to comment.