tide/functions/_tide_sub_bug-report.fish

58 lines
2.4 KiB
Fish
Raw Normal View History

function _tide_sub_bug-report
2021-03-02 20:46:40 +03:00
argparse c/clean v/verbose -- $argv
2021-02-03 23:57:13 +03:00
if set -q _flag_clean
HOME=(mktemp -d) fish --init-command "curl --silent \
https://raw.githubusercontent.com/jorgebucaran/fisher/main/functions/fisher.fish |
source && fisher install ilancosman/tide"
else if set -q _flag_verbose
2021-03-08 22:07:47 +03:00
set --long | string match --regex "^_?tide.*" | # Get only tide variables
string match --regex --invert "^_tide_.*_prompt_display_.*" | # Remove _tide_left_prompt_display_5770 etc
string match --regex --invert "^_tide_var_list.*" # Remove _tide_var_list
2021-02-03 23:57:13 +03:00
else
2021-04-13 03:35:35 +03:00
set -l fishVersion (fish --version | string match --regex "fish, version (\d\.\d\.\d)")[2]
_tide_check_version Fish fish-shell/fish-shell "(\d\.\d\.\d)" $fishVersion || return
2021-04-13 03:35:35 +03:00
set -l tideVersion (tide --version | string match --regex "tide, version (\d\.\d\.\d)")[2]
_tide_check_version Tide IlanCosman/tide "v(\d\.\d\.\d)" $tideVersion || return
2021-04-13 02:48:01 +03:00
# Check that omf is not installed
2021-04-13 03:35:35 +03:00
not functions --query omf
2021-04-13 02:48:01 +03:00
_tide_check_condition \
"Tide does not work with oh-my-fish installed." \
2021-04-13 03:35:35 +03:00
"Please uninstall it before submitting a bug report." || return
read --local --prompt-str "What operating system are you using? (e.g Ubuntu 20.04): " os
read --local --prompt-str "What terminal emulator are you using? (e.g Kitty): " terminalEmulator
printf '%b\n' "\nPlease copy the following information into the issue:\n" \
"fish version: $fishVersion" \
"tide version: $tideVersion" \
"term: $TERM" \
"os: $os" \
"terminal emulator: $terminalEmulator"
end
2021-03-02 20:46:40 +03:00
end
function _tide_check_version -a programName repoName regexToGetVersion currentVersion
curl --silent https://github.com/$repoName/releases/latest |
string match --regex ".*$repoName/releases/tag/$regexToGetVersion.*" |
read --local --line __ latestVersion
2021-04-13 02:48:01 +03:00
string match --quiet --regex "^$latestVersion" "$currentVersion"
_tide_check_condition \
"Your $programName version is out of date." \
"The latest is $latestVersion. You have $currentVersion." \
"Please update before submitting a bug report."
end
function _tide_check_condition
2021-04-13 03:35:35 +03:00
if test "$status" != 0
2021-03-31 01:29:21 +03:00
set_color red
2021-04-13 03:35:35 +03:00
printf '%s\n' $argv
set_color normal
return 1
2021-03-31 01:29:21 +03:00
end
2021-04-13 03:35:35 +03:00
return 0
end