1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-05-05 23:26:38 +02:00

github #115: completion(ruby): completer opts for irb

IRB now has `--regexp-completor` and `--type-completor` options added by:
1dec2708c9
This commit is contained in:
OKURA Masafumi 2024-03-17 23:44:54 +09:00 committed by Oliver Kiddle
parent a967c4a435
commit f57ad185b3
2 changed files with 5 additions and 0 deletions

View File

@ -1,5 +1,8 @@
2024-04-01 Oliver Kiddle <opk@zsh.org>
* github #115: OKURA Masafumi: Completion/Unix/Command/_ruby:
IRB now has `--regexp-completor` and `--type-completor` options
* 52859: Completion/Zsh/Command/_fc, Completion/Zsh/Command/_vared:
use _date_formats for fc and complete -m/-M for vared

View File

@ -89,6 +89,8 @@ irb=(
"(--colorize)--nocolorize[don't use color-highlighting]"
'(--noautocomplete)--autocomplete[use auto-completion]'
"(--autocomplete)--noautocomplete[don't use auto-completion]"
'(--regexp-completor)--type-completor[use regexp based completion]'
'(--type-completor)--regexp-completor[use type based completion]'
'(--noscript)--script[script mode]'
'(--script)--noscript[no script mode]'
'--single-irb[share self with sub-irb]'