diff options
| -rw-r--r-- | zsh/_tkc.zsh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/zsh/_tkc.zsh b/zsh/_tkc.zsh new file mode 100644 index 0000000..e640837 --- /dev/null +++ b/zsh/_tkc.zsh | |||
| @@ -0,0 +1,7 @@ | |||
| 1 | #compdef tkc | ||
| 2 | |||
| 3 | function _tkc() { | ||
| 4 | compadd -S '' $(cut -d' ' -f1 ~/log/plan.context.md) | ||
| 5 | } | ||
| 6 | |||
| 7 | _tkc | ||