From da9abf3533018315dd83113c6d62c111048577a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Ch=C5=82odnicki?= Date: Wed, 1 Nov 2023 23:40:51 +0100 Subject: [PATCH] change default value of show_references_in_quick_panel to true (#2350) --- LSP.sublime-settings | 2 +- messages/1.27.0.txt | 14 ++++++++++++++ plugin/core/types.py | 2 +- sublime-package.json | 2 +- 4 files changed, 17 insertions(+), 3 deletions(-) create mode 100644 messages/1.27.0.txt diff --git a/LSP.sublime-settings b/LSP.sublime-settings index b5692d58d..baf277228 100644 --- a/LSP.sublime-settings +++ b/LSP.sublime-settings @@ -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 diff --git a/messages/1.27.0.txt b/messages/1.27.0.txt new file mode 100644 index 000000000..3e458dcc9 --- /dev/null +++ b/messages/1.27.0.txt @@ -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 diff --git a/plugin/core/types.py b/plugin/core/types.py index 79c86f3b0..c90805070 100644 --- a/plugin/core/types.py +++ b/plugin/core/types.py @@ -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) diff --git a/sublime-package.json b/sublime-package.json index 4d2b137da..17a0f17ee 100644 --- a/sublime-package.json +++ b/sublime-package.json @@ -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": {