1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-11-05 04:39:03 -08:00

prevent truncated output from ruining shell prompts

openSUSE disables this for no reason.
This commit is contained in:
Connor Olding 2024-07-06 04:51:13 -07:00
parent d213384ba4
commit cf1e5eeaed

View file

@ -32,6 +32,7 @@ setopt menu_complete # autoselect the first completion entry
setopt no_beep # be quiet
setopt no_match # error on bad tab-complete
setopt path_dirs # Perform path search even on command names with slashes.
setopt prompt_cr prompt_sp # prevent truncated output from ruining shell prompts
setopt rc_quotes # 'it''s okay' becomes "it's okay"
unsetopt flow_control # Disable start/stop characters in shell editor.
unsetopt bang_hist # this does nothing but cause me grief (disables !s)