From b8f234ce4dc648f293a9baedf1796c2d53bf1c9c Mon Sep 17 00:00:00 2001 From: "Felipe \"Zoc\" Silveira" Date: Mon, 28 Jul 2014 05:13:42 -0300 Subject: [PATCH] Update prompt_paradox_setup According to [Powerline Font Patching Documentation](http://powerline.readthedocs.org/en/latest/fontpatching.html), the special characters moved to the Unicode Private Use Area (the range goes from U+E000 to U+F8FF) Newly [patched fonts](https://github.com/Lokaltog/powerline-fonts) use these new codes. Updated the file with the specified changes to work with the new fonts. --- modules/prompt/functions/prompt_paradox_setup | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/prompt/functions/prompt_paradox_setup b/modules/prompt/functions/prompt_paradox_setup index 097b6db964..4a6c11d566 100644 --- a/modules/prompt/functions/prompt_paradox_setup +++ b/modules/prompt/functions/prompt_paradox_setup @@ -2,7 +2,7 @@ pmodload 'helper' CURRENT_BG='NONE' -SEGMENT_SEPARATOR='⮀' +SEGMENT_SEPARATOR='' # Begin a segment @@ -95,9 +95,9 @@ function prompt_paradox_setup { zstyle ':prezto:module:editor:info:keymap:alternate' format '%B%F{red}❮%f%b' zstyle ':prezto:module:git:info:action' format '! %s' zstyle ':prezto:module:git:info:added' format '✚' - zstyle ':prezto:module:git:info:ahead' format '⬆' - zstyle ':prezto:module:git:info:behind' format '⬇' - zstyle ':prezto:module:git:info:branch' format '⭠ %b' + zstyle ':prezto:module:git:info:ahead' format '↑' + zstyle ':prezto:module:git:info:behind' format '↓' + zstyle ':prezto:module:git:info:branch' format ' %b' zstyle ':prezto:module:git:info:commit' format '➦ %.7c' zstyle ':prezto:module:git:info:deleted' format '✖' zstyle ':prezto:module:git:info:modified' format '✱'