Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/languageserverinstance.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
T = 0.0

"""
LanguageServerInstance(pipe_in, pipe_out, env="", depot="", err_handler=nothing, symserver_store_path=nothing)

Expand Down Expand Up @@ -45,6 +43,7 @@ mutable struct LanguageServerInstance
lint_options::StaticLint.LintOptions
lint_missingrefs::Symbol
lint_disableddirs::Vector{String}
completion_mode::Symbol

combined_msg_queue::Channel{Any}

Expand Down Expand Up @@ -81,6 +80,7 @@ mutable struct LanguageServerInstance
StaticLint.LintOptions(),
:all,
LINT_DIABLED_DIRS,
:import, # options: :import or :qualify, anything else turns this off
Channel{Any}(Inf),
err_handler,
:created,
Expand Down
Loading