From fa6e3f5702595064fe7b4cbbef8f111044afba2c Mon Sep 17 00:00:00 2001 From: guneysus Date: Sat, 24 Jan 2015 14:34:32 +0200 Subject: [PATCH] Collapse/Uncollapse all function --- themes/powerline_fancy.zsh-theme | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/themes/powerline_fancy.zsh-theme b/themes/powerline_fancy.zsh-theme index b2ae69e50..9dbe4e564 100644 --- a/themes/powerline_fancy.zsh-theme +++ b/themes/powerline_fancy.zsh-theme @@ -183,3 +183,14 @@ uncollapse_wd () { POWERLINE_CURRENT_PATH='$(_wd)' update_prompt } +uncollapse_all(){ + uncollapse_git + uncollapse_wd + update_prompt +} + +collapse_all(){ + collapse_git + collapse_wd + update_prompt +}