tide/tide_theme/configure/choices/prompt_spacing.fish

28 lines
637 B
Fish
Raw Normal View History

2020-05-19 02:17:50 +03:00
function prompt_spacing
_title 'Prompt Spacing'
_option 1 'Compact'
2020-05-19 06:03:25 +03:00
_display_prompt fake_tide_newline true
2020-05-19 02:17:50 +03:00
_cursor_up 1
2020-05-19 06:03:25 +03:00
_display_prompt fake_tide_newline false
2020-05-19 02:17:50 +03:00
_option 2 'Sparse'
2020-05-19 06:03:25 +03:00
_display_prompt fake_tide_newline true
2020-05-19 02:17:50 +03:00
_cursor_up 1
2020-05-19 06:03:25 +03:00
_display_prompt fake_tide_newline true
2020-05-19 02:17:50 +03:00
_display_restart_and_quit
switch (_menu 'Choice' 1/2/r/q)
case 1
2020-05-19 06:03:25 +03:00
set -g fake_tide_newline false
2020-05-19 02:17:50 +03:00
_next_choice 'finish'
case 2
2020-05-19 06:03:25 +03:00
set -g fake_tide_newline true
2020-05-19 02:17:50 +03:00
_next_choice 'finish'
case r
_begin
case q
_quit
end
end