Sync config with ssh remotes (#17349)
Release Notes: - N/A --------- Co-authored-by: Mikayla <mikayla@zed.dev>
This commit is contained in:
parent
4b094798e0
commit
7fb94c4c4d
13 changed files with 609 additions and 193 deletions
|
@ -280,7 +280,8 @@ message Envelope {
|
|||
FindSearchCandidates find_search_candidates = 243;
|
||||
FindSearchCandidatesResponse find_search_candidates_response = 244;
|
||||
|
||||
CloseBuffer close_buffer = 245; // current max
|
||||
CloseBuffer close_buffer = 245;
|
||||
UpdateUserSettings update_user_settings = 246; // current max
|
||||
}
|
||||
|
||||
reserved 158 to 161;
|
||||
|
@ -2491,3 +2492,8 @@ message AddWorktree {
|
|||
message AddWorktreeResponse {
|
||||
uint64 worktree_id = 1;
|
||||
}
|
||||
|
||||
message UpdateUserSettings {
|
||||
uint64 project_id = 1;
|
||||
string content = 2;
|
||||
}
|
||||
|
|
|
@ -365,7 +365,8 @@ messages!(
|
|||
(AddWorktreeResponse, Foreground),
|
||||
(FindSearchCandidates, Background),
|
||||
(FindSearchCandidatesResponse, Background),
|
||||
(CloseBuffer, Foreground)
|
||||
(CloseBuffer, Foreground),
|
||||
(UpdateUserSettings, Foreground)
|
||||
);
|
||||
|
||||
request_messages!(
|
||||
|
@ -560,7 +561,8 @@ entity_messages!(
|
|||
CreateContext,
|
||||
UpdateContext,
|
||||
SynchronizeContexts,
|
||||
LspExtSwitchSourceHeader
|
||||
LspExtSwitchSourceHeader,
|
||||
UpdateUserSettings
|
||||
);
|
||||
|
||||
entity_messages!(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue