tuned names: avoid camel-case;
authorwenzelm
Mon, 03 Nov 2025 16:49:40 +0100
changeset 83484 995981d832d9
parent 83483 499cbd3f6cee
child 83485 b94d2f0133b1
tuned names: avoid camel-case;
src/Tools/VSCode/extension/src/symbol_panel.ts
--- a/src/Tools/VSCode/extension/src/symbol_panel.ts	Mon Nov 03 16:37:54 2025 +0100
+++ b/src/Tools/VSCode/extension/src/symbol_panel.ts	Mon Nov 03 16:49:40 2025 +0100
@@ -86,9 +86,9 @@
 
     const document = editor.document;
     const selection = editor.selection;
-    let selectedText = document.getText(selection);
 
-    if (!selectedText.trim() && !selection.isEmpty) return;
+    let selected_text = document.getText(selection);
+    if (!selected_text.trim() && !selection.isEmpty) return;
 
     const control_group = this._grouped_symbols["control"];
     if (!control_group) return;
@@ -108,10 +108,10 @@
     editor.edit(edit_builder => {
       if (!selection.isEmpty) {
         if (action === "bold") {
-          editor.setDecorations(this.boldDecoration, [{ range: selection }]);
+          editor.setDecorations(this.bold_decoration, [{ range: selection }]);
         }
         else {
-          let new_text = selectedText
+          let new_text = selected_text
             .split("")
             .map((char, index, arr) => {
               const prevChar = index > 0 ? arr[index - 1] : null;
@@ -138,13 +138,11 @@
   private _insert_symbol(symbol: string): void {
     const editor = window.activeTextEditor;
     if (editor) {
-      editor.edit(editBuilder => {
-        editBuilder.insert(editor.selection.active, symbol);
-      });
+      editor.edit(edit_builder => edit_builder.insert(editor.selection.active, symbol));
     }
   }
 
-  private boldDecoration = window.createTextEditorDecorationType({
+  private bold_decoration = window.createTextEditorDecorationType({
     fontWeight: "bold",
     textDecoration: "none"
   });
@@ -157,14 +155,13 @@
 
     const document = editor.document;
     const selection = editor.selection;
-    let selectedText = document.getText(selection);
 
-    if (!selectedText.trim() && !selection.isEmpty) return;
+    let selected_text = document.getText(selection);
+    if (!selected_text.trim() && !selection.isEmpty) return;
 
     const control_group = this._grouped_symbols["control"];
     if (!control_group) return;
 
-
     const control_symbols: { [key: string]: string } = {};
     for (const symbol of control_group) {
       if (symbol.name === "sup" || symbol.name === "sub" || symbol.name === "bold") {
@@ -176,11 +173,11 @@
 
     editor.edit(edit_builder => {
       if (!selection.isEmpty) {
-        if (this.boldDecoration) {
-          editor.setDecorations(this.boldDecoration, []);
+        if (this.bold_decoration) {
+          editor.setDecorations(this.bold_decoration, []);
         }
 
-        let new_text = selectedText
+        let new_text = selected_text
           .split("")
           .map(char => (all_control_symbols.includes(char) ? "" : char))
           .join("");