diff --git a/lib/command.coffee b/lib/command.coffee index a346b8c..d11ad7d 100644 --- a/lib/command.coffee +++ b/lib/command.coffee @@ -151,8 +151,8 @@ class Command func(range, args) else # Step 8: Match command against existing commands - matching = ([name for name, val of Ex.singleton() when \ - name.indexOf(command) is 0]) + matching = (name for name, val of Ex.singleton() when \ + name.indexOf(command) is 0) matching.sort()