Skip to content

Commit 2a3e258

Browse files
authored
Merge pull request #892 from julia-vscode/comps
Completions for unexported symbols
2 parents a82b28d + 2e6cce1 commit 2a3e258

File tree

3 files changed

+220
-97
lines changed

3 files changed

+220
-97
lines changed

src/languageserverinstance.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
T = 0.0
2-
31
"""
42
LanguageServerInstance(pipe_in, pipe_out, env="", depot="", err_handler=nothing, symserver_store_path=nothing)
53
@@ -45,6 +43,7 @@ mutable struct LanguageServerInstance
4543
lint_options::StaticLint.LintOptions
4644
lint_missingrefs::Symbol
4745
lint_disableddirs::Vector{String}
46+
completion_mode::Symbol
4847

4948
combined_msg_queue::Channel{Any}
5049

@@ -81,6 +80,7 @@ mutable struct LanguageServerInstance
8180
StaticLint.LintOptions(),
8281
:all,
8382
LINT_DIABLED_DIRS,
83+
:import, # options: :import or :qualify, anything else turns this off
8484
Channel{Any}(Inf),
8585
err_handler,
8686
:created,

0 commit comments

Comments
 (0)