Skip to content

Commit

Permalink
Change OBJECT symbol to VARIABLE (#596)
Browse files Browse the repository at this point in the history
  • Loading branch information
kv9898 authored Oct 22, 2024
1 parent 33100a0 commit a8777db
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

# 0.1.9000

## 2024-10

- The document symbol kind for assigned variables is now `VARIABLE` (@kv9898, posit-dev/positron#5071). This produces a clearer icon in the outline.

- Added partial support for outline headers in comments (@kv9898, posit-dev/positron#3822).

- Sending long inputs of more than 4096 bytes no longer fails (posit-dev/positron#4745).
Expand Down
2 changes: 1 addition & 1 deletion crates/ark/src/lsp/symbols.rs
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ fn index_assignment(

let symbol = DocumentSymbol {
name,
kind: SymbolKind::OBJECT,
kind: SymbolKind::VARIABLE,
detail: None,
children: Some(Vec::new()),
deprecated: None,
Expand Down

0 comments on commit a8777db

Please sign in to comment.