Skip to content

Commit 618f1cd

Browse files
authored
chore(release): prepare for 0.13.0 (#96)
1 parent 4937dc6 commit 618f1cd

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "protols"
33
description = "Language server for proto3 files"
4-
version = "0.12.9"
4+
version = "0.13.0"
55
edition = "2024"
66
license = "MIT"
77
homepage = "https://github.com/coder3101/protols"

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99

1010
-**Code Completion**: Auto-complete messages, enums, and keywords in your `.proto` files.
1111
-**Diagnostics**: Syntax errors, import error with tree-sitter and advanced diagnostics from `protoc`.
12-
-**Document Symbols**: Navigate and view all symbols, including messages and enums.
12+
-**Workspace Symbols**: Search and view all symbols across workspaces.
13+
-**Document Symbols**: Navigate and view all symbols, including nested messages and enums in from a document.
1314
-**Code Formatting**: Format `.proto` files using `clang-format` for a consistent style.
1415
-**Go to Definition**: Jump to the definition of symbols like messages or enums and imports.
1516
-**Hover Information**: Get detailed information and documentation on hover.
@@ -31,6 +32,7 @@
3132
- [Code Completion](#code-completion)
3233
- [Diagnostics](#diagnostics)
3334
- [Code Formatting](#code-formatting)
35+
- [Workspace Symbols](#workspace-symbols)
3436
- [Document Symbols](#document-symbols)
3537
- [Go to Definition](#go-to-definition)
3638
- [Hover Information](#hover-information)
@@ -156,6 +158,10 @@ Syntax errors are caught by the tree-sitter parser, which highlights issues dire
156158

157159
Format your `.proto` files using `clang-format`. To customize the formatting style, add a `.clang-format` file to the root of your project. Both document and range formatting are supported.
158160

161+
### Workspace Symbols
162+
163+
Protols implements workspace symbol capabilities allowing you to search for symbols across workspace or list them, including nested symbols such as messages and enums. This allows for easy navigation and reference across workspace.
164+
159165
### Document Symbols
160166

161167
Protols provides a list of symbols in the current document, including nested symbols such as messages and enums. This allows for easy navigation and reference.

0 commit comments

Comments
 (0)