Add editor action to manually invoke buffer format
This commit is contained in:
parent
955ebc5499
commit
f3395cf4fd
9 changed files with 124 additions and 33 deletions
|
@ -420,9 +420,15 @@ message ReloadBuffersResponse {
|
|||
ProjectTransaction transaction = 1;
|
||||
}
|
||||
|
||||
enum FormatTrigger {
|
||||
Save = 0;
|
||||
Manual = 1;
|
||||
}
|
||||
|
||||
message FormatBuffers {
|
||||
uint64 project_id = 1;
|
||||
repeated uint64 buffer_ids = 2;
|
||||
FormatTrigger trigger = 2;
|
||||
repeated uint64 buffer_ids = 3;
|
||||
}
|
||||
|
||||
message FormatBuffersResponse {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue