44 lines
1.2 KiB
Fish
44 lines
1.2 KiB
Fish
function finish
|
|
set_color red
|
|
_tide_title 'Overwrite tide config?'
|
|
set_color normal
|
|
|
|
_tide_option y Yes
|
|
printf '%b' '\n'
|
|
|
|
_tide_menu
|
|
switch $_tide_selected_option
|
|
case y
|
|
_tide_finish
|
|
clear
|
|
end
|
|
end
|
|
|
|
function _tide_finish
|
|
set -e _tide_selected_option # Skip through all the _next_choices
|
|
|
|
# Deal with prompt char/vi mode
|
|
if contains character $fake_tide_left_prompt_items
|
|
_tide_find_and_remove vi_mode fake_tide_right_prompt_items
|
|
else
|
|
# If no character, insert vi_mode
|
|
_tide_find_and_remove vi_mode fake_tide_right_prompt_items
|
|
if contains time $fake_tide_right_prompt_items
|
|
set fake_tide_right_prompt_items $fake_tide_right_prompt_items[1..-2] vi_mode $fake_tide_right_prompt_items[-1]
|
|
else
|
|
set -a fake_tide_right_prompt_items vi_mode
|
|
end
|
|
end
|
|
|
|
# Set the real variables
|
|
for fakeVar in (set --names | string match --regex "^fake_tide.*")
|
|
set -U (string replace 'fake_' '' $fakeVar) $$fakeVar
|
|
end
|
|
|
|
# Make sure old prompt won't display
|
|
set -e $_tide_prompt_var 2>/dev/null
|
|
|
|
# Re-initialize the prompt
|
|
source (functions --details fish_prompt)
|
|
end
|