mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 15:14:44 +00:00
330f1701d7
This mostly fixes some wrong indents or replaces some stray tab indents. I excluded alignment on purpose, because we have a whole bunch of code that goes like ```fish complete -c foo -n 'some-condition' -l someoption complete -c foo -n 'some-longer-condition' -l someotheroption ``` and changing it seems like a larger thing and would include more thrashing. See #3622.
24 lines
1.2 KiB
Fish
24 lines
1.2 KiB
Fish
function __fish_complete_nethack
|
|
set -l roles Archeologist Barbarian Cave{man,woman} Healer Knight Monk \
|
|
Priest{,ess} Rogue Ranger Samurai Tourist Valkyrie Wizard
|
|
|
|
set -l races Human Elf Dwarf Gnome Orc
|
|
|
|
for r in $$argv[1]
|
|
printf "%s\t%s\n" (string sub -l 3 $r) $r
|
|
end
|
|
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'
|