add split, vsplit, sp, and vsp commands
This commit is contained in:
parent
4a547e64fd
commit
7f667d90e0
2 changed files with 28 additions and 2 deletions
|
|
@ -11,10 +11,11 @@ class Command
|
|||
|
||||
execute: (input) ->
|
||||
return unless input.characters.length > 0
|
||||
[command, args...] = input.characters.split(" ")
|
||||
|
||||
func = (new Ex)[input.characters]
|
||||
func = (new Ex)[command]
|
||||
if func?
|
||||
func()
|
||||
func(args)
|
||||
else
|
||||
throw new CommandError("#{input.characters}")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue