diff options
author | romkatv <roman.perepelitsa@gmail.com> | 2019-09-12 11:58:37 +0300 |
---|---|---|
committer | romkatv <roman.perepelitsa@gmail.com> | 2019-09-12 11:58:37 +0300 |
commit | 3674e69b4329fba47945e0fd2beb065ea4cd1cd9 (patch) | |
tree | 7df9d3892013e0e71e9ff2277e770fd6263d4687 /internal/icons.zsh | |
parent | 040be70d926d07c3bbf80b19c3ac4a431475f61f (diff) |
stop setting prompt_cr and prompt_sp
Diffstat (limited to 'internal/icons.zsh')
-rwxr-xr-x | internal/icons.zsh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/icons.zsh b/internal/icons.zsh index cacbb535..e0102fed 100755 --- a/internal/icons.zsh +++ b/internal/icons.zsh @@ -540,7 +540,7 @@ function _p9k_init_icons() { # Sadly, this is a part of public API. Its use is emphatically discouraged. function print_icon() { - emulate -L zsh && setopt no_hist_expand extended_glob no_prompt_bang prompt_{cr,percent,subst,sp} + emulate -L zsh && setopt no_hist_expand extended_glob no_prompt_bang prompt_{percent,subst} _p9k_init_icons [[ -z $_p9k_locale ]] || local LC_ALL=$_p9k_locale local icon_name=$1 @@ -558,7 +558,7 @@ function print_icon() { # otherwise "print_icon" is used, which takes the users # overrides into account. function get_icon_names() { - emulate -L zsh && setopt no_hist_expand extended_glob no_prompt_bang prompt_{cr,percent,subst,sp} + emulate -L zsh && setopt no_hist_expand extended_glob no_prompt_bang prompt_{percent,subst} _p9k_init_icons [[ -z $_p9k_locale ]] || local LC_ALL=$_p9k_locale # Iterate over a ordered list of keys of the icons array |