Only show explicitly installed when tab-completing pacman -R*
When tabcompleting for pacman -R*, I generally only want to show things that I've explicitly installed, rather than things that have been installed automatically as a dependency.
這個提交存在於:
父節點
c9040c1772
當前提交
a265f4e40e
共有 1 個檔案被更改,包括 1 行新增 和 1 行删除
|
@ -44,7 +44,7 @@ overidecomplete(){
|
|||
# If I want to install something, give a list of things to install
|
||||
-S) toadd="$($cmd -Slq | fzf -m --preview "$cmd -Si {1}" | tr '\n' ' ')"; ret=0 ;;
|
||||
# If I want to uninstall something, give a list of things to uninstall
|
||||
-R*) toadd="$($cmd -Qq | fzf -m --preview "$cmd -Qi {1}" | tr '\n' ' ')"; ret=0 ;;
|
||||
-R*) toadd="$($cmd -Qeq | fzf -m --preview "$cmd -Qi {1}" | tr '\n' ' ')"; ret=0 ;;
|
||||
-Ql) toadd="$($cmd -Qq | fzf -m --preview "$cmd -Qi {1}" | tr '\n' ' ')"; ret=0 ;;
|
||||
esac ;;
|
||||
msfvenom)
|
||||
|
|
載入中…
新增表格
新增連結
新增問題並參考