inital commit

This commit is contained in:
2026-03-23 23:50:58 +00:00
commit 503c232b30
110 changed files with 7218 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#compdef dcs
# dcs is a shim to dcsctl, so reuse the same completion.
# This ensures `dcs …` and `dcsctl …` behave identically.
_dcs() {
autoload -Uz _dcsctl
_dcsctl "$@"
}
_dcs "$@"