fish-shell/share/completions/pabcnetcclear.fish
Emily Grace Seville 04de5b1fec
/define option for pabcnetcclear completion (#8526)
* Add /define option

* Fix PascalABC.NET version
2021-12-04 10:32:40 +01:00

20 lines
650 B
Fish

# Completion for: PascalABC.NET 3.8.1 compiler
function __pabcnetcclear_generate_args --description 'Function to generate args'
set --local current_token (commandline --current-token --cut-at-cursor)
switch $current_token
case '/Debug:*'
echo -e $current_token"0\tEnable generation
$current_token"1"\tDisable generation"
case '*'
echo -e "/Help\tShow help
/H\tShow help
/?\tShow help
/Debug\tGenerate a code debug info
/output\tSpecify an executable name
/SearchDir\tSpecify a path to search units
/define\tDefine a symbol"
end
end
complete --command pabcnetcclear --no-files --arguments '(__pabcnetcclear_generate_args)'