From 234910f5a9345a919b590cf6d27fc80c35a1a728 Mon Sep 17 00:00:00 2001 From: Matt Blenkinsop Date: Wed, 6 Dec 2023 15:13:20 +0000 Subject: [PATCH] Bug 35498: Allow tab to indent lines and trigger autocomplete This patch allows the tab key to indent lines as well as trigger autocomplete. Test plan: 1) Apply patch, navigate to reports and create a new SQL report 2) Click in the text editor and press tab, it should indent and then trigger the autocomplete options 3) Type something to select from the autocomplete box and press tab - it should autocomplete that option 4) Type any word and then press space. Now press tab and it should indent again Signed-off-by: Andrew Fuerste-Henry --- .../prog/en/modules/reports/guided_reports_start.tt | 1 - 1 file changed, 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt index 07f18eb2a9..74d9315a4e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt @@ -1586,7 +1586,6 @@ "\\[\\[(.*?)\\]\\]":"style1", "<<(.*?)>>":"style1" }, - extraKeys: {"Tab": "autocomplete"}, //enable tab to accept auto-complete hint: CodeMirror.hint.sql, hintOptions: { tables: [% To.json(tables) | $raw %] -- 2.30.2