-
Notifications
You must be signed in to change notification settings - Fork 293
refactor(chat): update chat newline messaging to prioritize ctrl+j #1129
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1129 +/- ##
=======================================
Coverage 13.69% 13.69%
=======================================
Files 2361 2361
Lines 203706 203748 +42
Branches 184070 184112 +42
=======================================
+ Hits 27889 27912 +23
- Misses 174429 174447 +18
- Partials 1388 1389 +1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Is ctrl+j also a popular combo on Mac? I think "command+key" is more popular |
you mean like "command+j"? That keybinding doesn't work, has to be control(^) |
@@ -119,7 +119,7 @@ const WELCOME_TEXT: &str = color_print::cstr! {" | |||
<em>/help</em> <black!>Show the help dialogue</black!> | |||
<em>/quit</em> <black!>Quit the application</black!> | |||
|
|||
<cyan!>Use Alt(⌥) + Enter(⏎) to provide multi-line prompts.</cyan!> | |||
<cyan!>Use Ctrl(^) + j to provide multi-line prompts.</cyan!> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<cyan!>Use Ctrl(^) + j to provide multi-line prompts.</cyan!> | |
<cyan!>Tip: Use Ctrl(^) + j to add a newline in your prompt.</cyan!> |
Description of changes:
ctrl+j
since it seems to be more commonly supported - for instance, my default keybindings already have something set for Alt+Enter across different terminals.By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.