Use proper order of Completion::Source
field to have sane default (#26416)
Follow-up of https://github.com/zed-industries/zed/pull/26300 Release Notes: - N/A
This commit is contained in:
parent
8b29ee6033
commit
d81e7683ea
1 changed files with 2 additions and 3 deletions
|
@ -1,6 +1,5 @@
|
|||
syntax = "proto3";
|
||||
package zed.messages;
|
||||
import "google/protobuf/wrappers.proto";
|
||||
|
||||
// Looking for a number? Search "// current max"
|
||||
|
||||
|
@ -1003,8 +1002,8 @@ message Completion {
|
|||
optional bytes lsp_defaults = 8;
|
||||
|
||||
enum Source {
|
||||
Custom = 0;
|
||||
Lsp = 1;
|
||||
Lsp = 0;
|
||||
Custom = 1;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue