X-Git-Url: https://git.r.bdr.sh/rbdr/dotfiles/blobdiff_plain/24c7594d62d8d7fbbcdb64b11ce4adc5d8e6991a..455f099b504ec07dd492ab31987ae05a6f6774c7:/atom/packages/ex-mode/lib/view-model.coffee diff --git a/atom/packages/ex-mode/lib/view-model.coffee b/atom/packages/ex-mode/lib/view-model.coffee index af96e77..742d751 100644 --- a/atom/packages/ex-mode/lib/view-model.coffee +++ b/atom/packages/ex-mode/lib/view-model.coffee @@ -1,11 +1,11 @@ -ExCommandModeInputElement = require './ex-command-mode-input-element' +ExNormalModeInputElement = require './ex-normal-mode-input-element' class ViewModel constructor: (@command, opts={}) -> {@editor, @exState} = @command - @view = new ExCommandModeInputElement().initialize(@, opts) - @editor.commandModeInputView = @view + @view = new ExNormalModeInputElement().initialize(@, opts) + @editor.normalModeInputView = @view @exState.onDidFailToExecute => @view.remove() @done = false