The unpac monorepo manager self-hosting as a monorepo using unpac
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix bug in glued form completion (#230 point 1)

+4 -8
+1 -2
vendor/opam/cmdliner/src/tool/bash-completion.sh
··· 47 47 if [[ $group == "Values" ]]; then 48 48 if [[ $prefix == --* ]]; then 49 49 item="${prefix%%=*}=$item" 50 - fi 51 - if [[ $prefix == -* ]]; then 50 + elif [[ $prefix == -* ]]; then 52 51 item="${prefix:0:2}$item" 53 52 fi 54 53 fi
+2 -4
vendor/opam/cmdliner/src/tool/cmdliner_data.ml
··· 48 48 if [[ $group == "Values" ]]; then 49 49 if [[ $prefix == --* ]]; then 50 50 item="${prefix%%=*}=$item" 51 - fi 52 - if [[ $prefix == -* ]]; then 51 + elif [[ $prefix == -* ]]; then 53 52 item="${prefix:0:2}$item" 54 53 fi 55 54 fi ··· 115 114 if [[ "$group" == "Values" ]]; then 116 115 if [[ "$prefix" == --* ]]; then 117 116 item="${prefix%%=*}=${item}" 118 - fi 119 - if [[ "$prefix" == -* ]]; then 117 + elif [[ "$prefix" == -* ]]; then 120 118 item="${prefix:0:2}${item}" 121 119 fi 122 120 fi
+1 -2
vendor/opam/cmdliner/src/tool/zsh-completion.sh
··· 44 44 if [[ "$group" == "Values" ]]; then 45 45 if [[ "$prefix" == --* ]]; then 46 46 item="${prefix%%=*}=${item}" 47 - fi 48 - if [[ "$prefix" == -* ]]; then 47 + elif [[ "$prefix" == -* ]]; then 49 48 item="${prefix:0:2}${item}" 50 49 fi 51 50 fi