Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change default value of show_references_in_quick_panel to true #2350

Merged
merged 3 commits into from
Nov 1, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LSP.sublime-settings
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@
// --- Other --------------------------------------------------------------------------

// Show symbol references in Sublime's quick panel instead of the bottom panel.
"show_references_in_quick_panel": false,
"show_references_in_quick_panel": true,

// Show code lens:
// "annotation" - show an annotation on the right when code actions are available
Expand Down
14 changes: 14 additions & 0 deletions messages/1.27.0.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
=> 1.27.0

⚠️⚠️⚠️
To ensure that everything works properly after LSP package is updated, it's strongly recommended
to restart Sublime Text once it finishes updating all packages.
⚠️⚠️⚠️

# Breaking changes

- The default value of `show_references_in_quick_panel` has changed from `false` to `true`.

# Improvements

# Fixes
2 changes: 1 addition & 1 deletion sublime-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@
},
"show_references_in_quick_panel": {
"type": "boolean",
"default": false,
"default": true,
"markdownDescription": "Show symbol references in Sublime's quick panel instead of the bottom panel."
},
"popup_max_characters_width": {
Expand Down