summaryrefslogtreecommitdiff
path: root/home-config/fish/functions/tide/configure/choices/powerline/powerline_prompt_tails.fish
blob: 6b1574b8fa8e88a7180817d2ddd979f0e7ec3a6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
function powerline_prompt_tails
    _tide_title 'Prompt Tails'

    _tide_option 1 Flat
    set -g fake_tide_left_prompt_prefix ''
    set -g fake_tide_right_prompt_suffix ''
    _tide_display_prompt

    _tide_option 2 Sharp
    set -g fake_tide_left_prompt_prefix 
    set -g fake_tide_right_prompt_suffix 
    _tide_display_prompt

    _tide_option 3 Slanted
    set -g fake_tide_left_prompt_prefix 
    set -g fake_tide_right_prompt_suffix 
    _tide_display_prompt

    _tide_option 4 Round
    set -g fake_tide_left_prompt_prefix 
    set -g fake_tide_right_prompt_suffix 
    _tide_display_prompt

    _tide_menu (status function)
    switch $_tide_selected_option
        case Flat
            set -g fake_tide_left_prompt_prefix ''
            set -g fake_tide_right_prompt_suffix ''
        case Sharp
            set -g fake_tide_left_prompt_prefix 
            set -g fake_tide_right_prompt_suffix 
        case Slanted
            set -g fake_tide_left_prompt_prefix 
            set -g fake_tide_right_prompt_suffix 
        case Round
            set -g fake_tide_left_prompt_prefix 
            set -g fake_tide_right_prompt_suffix 
    end
    _next_choice powerline/powerline_prompt_style
end