Skip to content

Commit

Permalink
change default value of show_references_in_quick_panel to true (#2350)
Browse files Browse the repository at this point in the history
  • Loading branch information
rchl authored Nov 1, 2023
1 parent df43568 commit da9abf3
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
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 plugin/core/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ def r(name: str, default: Union[bool, int, str, list, dict]) -> None:
r("show_multiline_document_highlights", True)
r("show_diagnostics_panel_on_save", 0)
r("show_diagnostics_severity_level", 2)
r("show_references_in_quick_panel", False)
r("show_references_in_quick_panel", True)
r("show_symbol_action_links", False)
r("show_view_status", True)

Expand Down
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

0 comments on commit da9abf3

Please sign in to comment.