-
-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added file watching If the server supports it, we will now receive watched file notifications for files that have been added / updated or deleted in the project directories. This will help determining whether we should recompile the whole project if a dependency has changed, or if we should remove a module from our compiled module cache. * Started supervisor after init is sent
- Loading branch information
Showing
7 changed files
with
77 additions
and
12 deletions.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
...col/lib/generated/lexical/protocol/types/did_change_watched_files/registration/options.ex
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# This file's contents are auto-generated. Do not edit. | ||
defmodule Lexical.Protocol.Types.DidChangeWatchedFiles.Registration.Options do | ||
alias Lexical.Proto | ||
alias Lexical.Protocol.Types | ||
use Proto | ||
deftype watchers: list_of(Types.FileSystemWatcher) | ||
end |
7 changes: 7 additions & 0 deletions
7
apps/protocol/lib/generated/lexical/protocol/types/file_system_watcher.ex
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# This file's contents are auto-generated. Do not edit. | ||
defmodule Lexical.Protocol.Types.FileSystemWatcher do | ||
alias Lexical.Proto | ||
alias Lexical.Protocol.Types | ||
use Proto | ||
deftype glob_pattern: Types.GlobPattern, kind: optional(Types.Watch.Kind) | ||
end |
7 changes: 7 additions & 0 deletions
7
apps/protocol/lib/generated/lexical/protocol/types/glob_pattern.ex
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# This file's contents are auto-generated. Do not edit. | ||
defmodule Lexical.Protocol.Types.GlobPattern do | ||
alias Lexical.Proto | ||
alias Lexical.Protocol.Types | ||
use Proto | ||
defalias one_of([Types.Pattern, Types.RelativePattern]) | ||
end |
7 changes: 7 additions & 0 deletions
7
apps/protocol/lib/generated/lexical/protocol/types/relative_pattern.ex
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# This file's contents are auto-generated. Do not edit. | ||
defmodule Lexical.Protocol.Types.RelativePattern do | ||
alias Lexical.Proto | ||
alias Lexical.Protocol.Types | ||
use Proto | ||
deftype base_uri: one_of([Types.Workspace.Folder, string()]), pattern: Types.Pattern | ||
end |
6 changes: 6 additions & 0 deletions
6
apps/protocol/lib/generated/lexical/protocol/types/watch/kind.ex
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# This file's contents are auto-generated. Do not edit. | ||
defmodule Lexical.Protocol.Types.Watch.Kind do | ||
alias Lexical.Proto | ||
use Proto | ||
defenum create: 1, change: 2, delete: 4 | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters