Skip to content

Commit 4a8bf62

Browse files
authored
Merge branch 'master' into ib/report_parse_error_file
2 parents 5e152d6 + 2a3e258 commit 4a8bf62

File tree

5 files changed

+235
-109
lines changed

5 files changed

+235
-109
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)