diff --git a/changelog.md b/changelog.md index 3f565204..b16f7179 100644 --- a/changelog.md +++ b/changelog.md @@ -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 diff --git a/mycli/clitoolbar.py b/mycli/clitoolbar.py index 80700415..bcf347bd 100644 --- a/mycli/clitoolbar.py +++ b/mycli/clitoolbar.py @@ -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)