summaryrefslogtreecommitdiffstats
path: root/zsh/oh-my-zsh/plugins/fossil
diff options
context:
space:
mode:
authorLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-03-25 16:43:09 +0530
committerLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-03-25 16:43:09 +0530
commita62114c91f2070c8c8453d117f3d81dc113e41ff (patch)
treef266e87af29a08c01f82bc32dd7d463d8ec4441a /zsh/oh-my-zsh/plugins/fossil
parentaf120ab348f2e1a5a39dec035ed9dcf84189a64e (diff)
downloaddotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.gz
dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.bz2
dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.zip
dotfile update
Diffstat (limited to 'zsh/oh-my-zsh/plugins/fossil')
-rw-r--r--zsh/oh-my-zsh/plugins/fossil/README.md7
-rw-r--r--zsh/oh-my-zsh/plugins/fossil/_fossil32
-rw-r--r--zsh/oh-my-zsh/plugins/fossil/fossil.plugin.zsh57
3 files changed, 0 insertions, 96 deletions
diff --git a/zsh/oh-my-zsh/plugins/fossil/README.md b/zsh/oh-my-zsh/plugins/fossil/README.md
deleted file mode 100644
index 5bb47b7..0000000
--- a/zsh/oh-my-zsh/plugins/fossil/README.md
+++ /dev/null
@@ -1,7 +0,0 @@
-## Fossil Plugin
-
-This plugin adds completion support and prompt for fossil repositories.
-The prompt will display the current branch and status been dirty or clean.
-
-### CONTRIBUTOR
- - Jefferson González ([jgmdev](https://github.com/jgmdev))
diff --git a/zsh/oh-my-zsh/plugins/fossil/_fossil b/zsh/oh-my-zsh/plugins/fossil/_fossil
deleted file mode 100644
index d2d48bd..0000000
--- a/zsh/oh-my-zsh/plugins/fossil/_fossil
+++ /dev/null
@@ -1,32 +0,0 @@
-#compdef fossil
-
-function _fossil_get_command_list () {
- fossil help -a | grep -v "Usage|Common|This is"
-}
-
-function _fossil () {
- local context state state_descr line
- typeset -A opt_args
-
- _arguments \
- '1: :->command'\
- '2: :->subcommand'
-
- case $state in
- command)
- local _OUTPUT=$(fossil branch 2>&1 | grep "use --repo")
- if [[ -z "$_OUTPUT" ]]; then
- compadd "$(_fossil_get_command_list)"
- else
- compadd clone init import help version
- fi ;;
- subcommand)
- case "$words[2]" in
- help) compadd "$(_fossil_get_command_list)" ;;
- add) compadd "$(fossil extra)" ;;
- *) compcall -D ;;
- esac ;;
- esac
-}
-
-_fossil "$@"
diff --git a/zsh/oh-my-zsh/plugins/fossil/fossil.plugin.zsh b/zsh/oh-my-zsh/plugins/fossil/fossil.plugin.zsh
deleted file mode 100644
index a2123f4..0000000
--- a/zsh/oh-my-zsh/plugins/fossil/fossil.plugin.zsh
+++ /dev/null
@@ -1,57 +0,0 @@
-_FOSSIL_PROMPT=""
-
-# Prefix at the very beginning of the prompt, before the branch name
-ZSH_THEME_FOSSIL_PROMPT_PREFIX="%{$fg_bold[blue]%}fossil:(%{$fg_bold[red]%}"
-
-# At the very end of the prompt
-ZSH_THEME_FOSSIL_PROMPT_SUFFIX="%{$fg_bold[blue]%})"
-
-# Text to display if the branch is dirty
-ZSH_THEME_FOSSIL_PROMPT_DIRTY=" %{$fg_bold[red]%}✖"
-
-# Text to display if the branch is clean
-ZSH_THEME_FOSSIL_PROMPT_CLEAN=" %{$fg_bold[green]%}✔"
-
-function fossil_prompt_info() {
- local info=$(fossil branch 2>&1)
-
- # if we're not in a fossil repo, don't show anything
- ! command grep -q "use --repo" <<< "$info" || return
-
- local branch=$(echo $info | grep "* " | sed 's/* //g')
- local changes=$(fossil changes)
- local dirty="$ZSH_THEME_FOSSIL_PROMPT_CLEAN"
-
- if [[ -n "$changes" ]]; then
- dirty="$ZSH_THEME_FOSSIL_PROMPT_DIRTY"
- fi
-
- printf '%s %s %s %s %s' \
- "$ZSH_THEME_FOSSIL_PROMPT_PREFIX" \
- "${branch:gs/%/%%}" \
- "$ZSH_THEME_FOSSIL_PROMPT_SUFFIX" \
- "$dirty" \
- "%{$reset_color%}"
-}
-
-function _fossil_prompt () {
- local current=`echo $PROMPT $RPROMPT | grep fossil`
-
- if [ "$_FOSSIL_PROMPT" = "" -o "$current" = "" ]; then
- local _prompt=${PROMPT}
- local _rprompt=${RPROMPT}
-
- local is_prompt=`echo $PROMPT | grep git`
-
- if [ "$is_prompt" = "" ]; then
- RPROMPT="$_rprompt"'$(fossil_prompt_info)'
- else
- PROMPT="$_prompt"'$(fossil_prompt_info) '
- fi
-
- _FOSSIL_PROMPT="1"
- fi
-}
-
-autoload -U add-zsh-hook
-add-zsh-hook precmd _fossil_prompt