diff options
| author | Maxime Coste <mawww@kakoune.org> | 2017-03-10 12:06:35 +0000 |
|---|---|---|
| committer | Maxime Coste <mawww@kakoune.org> | 2017-03-10 12:06:35 +0000 |
| commit | 564da076a6fa93ceedad1ff1c430de7a4e8919fa (patch) | |
| tree | b3bf819c50fbeb45cb21bef9f77f15a0afe91b58 /src/ncurses_ui.cc | |
| parent | 3fb05ada86e5dc33d88d517beba0e28d289e542a (diff) | |
| parent | 59b65bb9fbf287df2c1f528ebaefb2f4415ff901 (diff) | |
Merge remote-tracking branch 'lenormf/assistant-dilbert'
Diffstat (limited to 'src/ncurses_ui.cc')
| -rw-r--r-- | src/ncurses_ui.cc | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/ncurses_ui.cc b/src/ncurses_ui.cc index a6e0d31a..e33abd79 100644 --- a/src/ncurses_ui.cc +++ b/src/ncurses_ui.cc @@ -51,6 +51,18 @@ static constexpr StringView assistant_clippy[] = " ╰───╯ ", " " }; +static constexpr StringView assistant_dilbert[] = + { R"( დოოოოოდ )", + R"( | | )", + R"( | | ╭)", + R"( |-ᱛ ᱛ-| │)", + R"( Ͼ ∪ Ͽ │)", + R"( | | ╯)", + R"( ˏ`-.ŏ.-´ˎ )", + R"( @ )", + R"( @ )", + R"( )"}; + static void set_attribute(WINDOW* window, int attribute, bool on) { if (on) @@ -1010,6 +1022,8 @@ void NCursesUI::set_ui_options(const Options& options) m_assistant = assistant_clippy; else if (it->value == "cat") m_assistant = assistant_cat; + else if (it->value == "dilbert") + m_assistant = assistant_dilbert; else if (it->value == "none" or it->value == "off") m_assistant = ConstArrayView<StringView>{}; } |
