You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I recently moved to zsh from fish (non-POSIX compliance was causing issues).
p10k was awesome because it gave me almost the same behavior out of the box!
There are few very small differences that still get in my way -
Ctrl-C:
In fish, the behavior is like this -
if command running
send SIGINT
else
clear line (don't start a new one)
Handling of "" and "" on multiline commands
In fish, if I have a multiline command like this -
$ echo a
b
And if I move the cursor to after '', and press , it creates a new line in between, instead of running the command.
Do you think these are features that can be supported by p10k?
The text was updated successfully, but these errors were encountered:
The features you've described can be implemented in zsh and they don't require any support from p10k. For the first, you might find it better to change your habits: use Ctrl-C to kill processes, and use Ctrl-U to clear the command line in zsh. For the second feature, you might find this plugin useful (also mine): https://github.com/romkatv/zsh-no-ps2.
Hey,
I recently moved to zsh from fish (non-POSIX compliance was causing issues).
p10k was awesome because it gave me almost the same behavior out of the box!
There are few very small differences that still get in my way -
In fish, the behavior is like this -
if command running
send SIGINT
else
clear line (don't start a new one)
However, out of the box, in zsh, it leaves the current prompt and starts a new one.
eg: https://unix.stackexchange.com/questions/376153/how-can-one-override-bash-ctrlc-to-be-more-fish-like
In fish, if I have a multiline command like this -
$ echo a
b
And if I move the cursor to after '', and press , it creates a new line in between, instead of running the command.
Do you think these are features that can be supported by p10k?
The text was updated successfully, but these errors were encountered: