summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKevin Song <chipbuster@users.noreply.github.com>2019-08-18 08:34:45 -0700
committerMatan Kushner <hello@matchai.me>2019-08-18 11:34:45 -0400
commit85ac0a6801c5fc184913e9868e5330fda23dc0c9 (patch)
tree280c4079b3f8a2fb336d18919cb705c23d9a6f6d /src
parent572a07c72d95324d5f230269138ac273a9c0cfd9 (diff)
fix: Set default prompt character to ❯ (#177)
Diffstat (limited to 'src')
-rw-r--r--src/modules/character.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/character.rs b/src/modules/character.rs
index 5e732dfa0..5a8ba898a 100644
--- a/src/modules/character.rs
+++ b/src/modules/character.rs
@@ -10,7 +10,7 @@ use ansi_term::Color;
/// - If the exit-code was anything else, the arrow will be formatted with
/// `COLOR_FAILURE` (red by default)
pub fn module<'a>(context: &'a Context) -> Option<Module<'a>> {
- const SUCCESS_CHAR: &str = "➜";
+ const SUCCESS_CHAR: &str = "❯";
const FAILURE_CHAR: &str = "✖";
const VICMD_CHAR: &str = "❮";