Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add config options for new completions modes (ver 2) #1963

Merged
merged 3 commits into from May 19, 2021
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -7,6 +7,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [Unreleased]
### Fixed
* SVGs with embedded single quotes are now displayed properly again.
### Changed
* Include new completion modes for unexported variables ([#892](https://github.com/julia-vscode/LanguageServer.jl/pull/892)).

## [1.1.10] - 2021-01-28
### Fixed
Expand Down
16 changes: 16 additions & 0 deletions package.json
Expand Up @@ -772,6 +772,22 @@
],
"scope": "window"
},
"julia.completionmode": {
"type": "string",
"default": "import",
"description": "Sets the mode for completions.",
"enum": [
"exportedonly",
"import",
"qualify"
],
"enumDescriptions": [
"Show completions for the current namespace.",
"Show completions for the current namespace and unexported variables of `using`ed modules. Selection of an unexported variable will result in the automatic insertion of an explicit `using` statement.",
"Show completions for the current namespace and unexported variables of `using`ed modules. Selection of an unexported variable will complete to a qualified variable name."
],
"scope": "window"
},
"julia.execution.resultType": {
"type": "string",
"default": "REPL",
Expand Down