1 ExNormalModeInputElement = require './ex-normal-mode-input-element'
4 constructor: (@command, opts={}) ->
5 {@editor, @exState} = @command
7 @view = new ExNormalModeInputElement().initialize(@, opts)
8 @editor.normalModeInputView = @view
9 @exState.onDidFailToExecute => @view.remove()
13 @exState.pushOperations(new Input(@view.value))
18 @exState.pushOperations(new Input(''))
22 constructor: (@characters) ->