diff options
author | romkatv <roman.perepelitsa@gmail.com> | 2019-11-02 18:01:02 +0300 |
---|---|---|
committer | romkatv <roman.perepelitsa@gmail.com> | 2019-11-02 18:01:02 +0300 |
commit | 7b3532de440f03a8d6577591828d7d3ccba122e0 (patch) | |
tree | fc866aa3826a54b204734ce5ddc2591083713954 /internal/wizard.zsh | |
parent | a7db19ec7e349bf34260fdc93b6ca7346af6e218 (diff) |
enable vi_mode in configs that don't have prompt_char
Diffstat (limited to 'internal/wizard.zsh')
-rwxr-xr-x | internal/wizard.zsh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/internal/wizard.zsh b/internal/wizard.zsh index a8382eef..383cd705 100755 --- a/internal/wizard.zsh +++ b/internal/wizard.zsh @@ -1538,12 +1538,19 @@ function generate_config() { sub MULTILINE_FIRST_PROMPT_PREFIX '' sub MULTILINE_NEWLINE_PROMPT_PREFIX '' sub MULTILINE_LAST_PROMPT_PREFIX '' - uncomment prompt_char sub STATUS_OK false sub STATUS_ERROR false fi fi + if [[ $style == (classic|rainbow) ]]; then + if (( num_lines == 2 && ! left_frame )); then + uncomment prompt_char + else + uncomment vi_mode + fi + fi + (( empty_line )) && sub PROMPT_ADD_NEWLINE true || sub PROMPT_ADD_NEWLINE false sub INSTANT_PROMPT $instant_prompt |