From 77011fd10b73c0dc9bc3b725633c3515a31ae53e Mon Sep 17 00:00:00 2001 From: VXNCXNX Date: Sat, 15 Aug 2026 10:35:53 +0000 Subject: [PATCH] fix: say the semi-colon runs the query in the multiline toolbar --- CHANGELOG.md | 2 ++ litecli/clitoolbar.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d91317..3d7add9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ ### Bug Fixes - Expand `~` in configured log file paths before opening the log. +- Say that a semi-colon runs the query in the multiline toolbar hint, which is + what it actually does. ### Internal diff --git a/litecli/clitoolbar.py b/litecli/clitoolbar.py index e3bc6ee..4d2adf7 100644 --- a/litecli/clitoolbar.py +++ b/litecli/clitoolbar.py @@ -15,7 +15,7 @@ def get_toolbar_tokens() -> list[tuple[str, str]]: result.append(("class:bottom-toolbar", " ")) if cli.multi_line: - result.append(("class:bottom-toolbar", " (Semi-colon [;] will end the line) ")) + result.append(("class:bottom-toolbar", " (Semi-colon [;] will run the query) ")) if cli.multi_line: result.append(("class:bottom-toolbar.on", "[F3] Multiline: ON "))