Render paths in ProjectSymbolsView

Co-Authored-By: Nathan Sobo <nathan@zed.dev>
This commit is contained in:
Antonio Scandurra 2022-02-22 17:48:14 +01:00
parent f0195ac3a3
commit 72ad3c2897
3 changed files with 131 additions and 33 deletions

View file

@ -185,9 +185,11 @@ message GetProjectSymbolsResponse {
}
message Symbol {
uint64 worktree_id = 1;
string language_name = 2;
bytes lsp_symbol = 3;
uint64 source_worktree_id = 1;
uint64 worktree_id = 2;
string language_name = 3;
string path = 4;
bytes lsp_symbol = 5;
}
message OpenBufferForSymbol {