Skip to content

Commit

Permalink
don't import :. (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZacLN authored Aug 8, 2017
1 parent 4ae5fdc commit 5ae255a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/languageserverinstance.jl
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function Base.run(server::LanguageServerInstance)
wontload = []
@schedule begin
for (modname, uri, loc) in server.user_modules
if !(modname in wontload || modname in loaded)
if !(modname in wontload || modname in loaded || modname == :.)
try
@eval import $modname
for (uri, doc) in server.documents
Expand Down

0 comments on commit 5ae255a

Please sign in to comment.