You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently our file watcher is rather dumb and just tries to watch everything (ignoring submodules) under the workspace root. However, per #604, even this is not complete.
So closing #604 in favour of this and noting the following enhancements:
new directories should be recursively added to the watcher subject to them matching the glob supplied by gopls
if the glob sent by gopls can't be made more specific (to ignore sub modules for example, or . prefixed directories, etc) then we could implement this client-side
The text was updated successfully, but these errors were encountered:
Until we resolve#172, #949 and #950, simply log any known calls to
RegisterCapability and UnregisterCapability. Panic if there are any
calls for methods we don't know about (so we then know to start
supporting them).
Until we resolve#172, #949 and #950, simply log any known calls to
RegisterCapability and UnregisterCapability. Panic if there are any
calls for methods we don't know about (so we then know to start
supporting them).
Until we resolve#172, #949 and #950, simply log any known calls to
RegisterCapability and UnregisterCapability. Panic if there are any
calls for methods we don't know about (so we then know to start
supporting them).
gopls
calls the client viaRegisterCapability
to indicate what file globs should be watched. e.g.It then calls
UnregisterCapability
(with a corresponding ID) when the client should drop a watcher:Currently our file watcher is rather dumb and just tries to watch everything (ignoring submodules) under the workspace root. However, per #604, even this is not complete.
So closing #604 in favour of this and noting the following enhancements:
gopls
gopls
can't be made more specific (to ignore sub modules for example, or.
prefixed directories, etc) then we could implement this client-sideThe text was updated successfully, but these errors were encountered: