Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion litecli/clitoolbar.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 "))
Expand Down