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 "))