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
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Breaking Changes
Features
---------
* Add `--warn-batch` flag, which is off by default.
* Add `/help` prompt to initial toolbar help.


Bug Fixes
Expand Down
2 changes: 2 additions & 0 deletions mycli/clitoolbar.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ def get_toolbar_tokens() -> list[tuple[str, str]]:
if show_initial_toolbar_help():
dynamic.append(divider)
dynamic.append(("class:bottom-toolbar", "right-arrow accepts full-line suggestion"))
dynamic.append(divider)
dynamic.append(("class:bottom-toolbar", "/help for more"))

if mycli.completion_refresher.is_refreshing():
dynamic.append(divider)
Expand Down
Loading