We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1bd311b + bc055a3 commit e76424aCopy full SHA for e76424a
src/utilities.jl
@@ -120,6 +120,10 @@ end
120
# the include follow logic.
121
function remove_workspace_files(root, server)
122
for (uri, doc) in getdocuments_pair(server)
123
+ # We first check whether the doc still exists on the server
124
+ # because a previous loop iteration could have deleted it
125
+ # via dependency removal of files
126
+ hasdocument(server, uri) || continue
127
fpath = getpath(doc)
128
isempty(fpath) && continue
129
get_open_in_editor(doc) && continue
0 commit comments