fish-shell/share/completions/nethack.fish

25 lines
1.2 KiB
Fish
Raw Normal View History

2019-10-23 15:41:25 +00:00
function __fish_complete_nethack
set -l roles Archeologist Barbarian Cave{man,woman} Healer Knight Monk \
Priest{,ess} Rogue Ranger Samurai Tourist Valkyrie Wizard
2019-10-23 15:41:25 +00:00
set -l races Human Elf Dwarf Gnome Orc
2019-10-23 15:41:25 +00:00
for r in $$argv[1]
printf "%s\t%s\n" (string sub -l 3 $r) $r
end
2019-10-23 15:41:25 +00:00
end
complete -c nethack -s d -ra "(__fish_complete_directories)" -d 'Specify a playground directory'
complete -c nethack -s n -d 'Suppress printing any news from the game administrator'
complete -c nethack -s p -x -a "(__fish_complete_nethack roles)" -d 'Specify profession'
complete -c nethack -s r -x -a "(__fish_complete_nethack races)" -d 'Specify race'
complete -c nethack -s D -d 'Start in debugging (wizard) mode'
complete -c nethack -s X -d 'Start in discovery mode'
complete -c nethack -s u -x -d 'Specify player name'
complete -c nethack -o dec -d 'Use DEC graphics'
complete -c nethack -o ibm -d 'Use IBM graphics'
complete -c nethack -l version -d 'Show version information'
complete -c nethack -l version:paste -d 'Show version information & copy it to paste buffer'
complete -c nethack -s s -d 'Print the list of your scores'
complete -c nethack -s v -d 'Print all versions present in the score file'