I think Slop should support '-v:8' as well as '-v=8' and '-v 8'
suggesting this change in parser.rb
# support `foo=bar`
orig_flag = flag.dup
# if match = flag.match(/([^=]+)=(.*)/) # OLD
if match = flag.match(/([^=:]+)[=:](.*)/) # NEW
flag, arg = match.captures
end
Will make --president:Trump work as-well
I think Slop should support '-v:8' as well as '-v=8' and '-v 8'
suggesting this change in parser.rb
Will make --president:Trump work as-well