Skip to content

Instantly share code, notes, and snippets.

@AllanChain
Last active October 13, 2023 13:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AllanChain/b2717bfd5288b8cf93e07e38c3a1ffeb to your computer and use it in GitHub Desktop.
Save AllanChain/b2717bfd5288b8cf93e07e38c3a1ffeb to your computer and use it in GitHub Desktop.
Custom ZSH completion for Slurm's `scancel`
# Learn from https://mrigank11.github.io/2018/03/zsh-auto-completion/
function _scancel {
_describe 'command' "($(squeue -h -o '%i:%T-%j' -u $USER))"
}
compdef _scancel scancel
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment