diff --git a/spec/editor-component-spec.coffee b/spec/editor-component-spec.coffee index 1a6d58af5..37712cf01 100644 --- a/spec/editor-component-spec.coffee +++ b/spec/editor-component-spec.coffee @@ -2,7 +2,7 @@ _ = require 'underscore-plus' {extend, flatten, toArray, last} = _ EditorView = require '../src/editor-view' -EditorComponent = require '../src/editor-component' +EditorComponent = require '../src/text-editor-component' nbsp = String.fromCharCode(160) describe "EditorComponent", -> diff --git a/spec/spec-helper.coffee b/spec/spec-helper.coffee index a5a31ac4b..feaefb793 100644 --- a/spec/spec-helper.coffee +++ b/spec/spec-helper.coffee @@ -15,7 +15,7 @@ Project = require '../src/project' Editor = require '../src/editor' EditorView = require '../src/editor-view' TokenizedBuffer = require '../src/tokenized-buffer' -EditorComponent = require '../src/editor-component' +EditorComponent = require '../src/text-editor-component' pathwatcher = require 'pathwatcher' clipboard = require 'clipboard' diff --git a/src/editor-view.coffee b/src/editor-view.coffee index b96d523b3..a4af6ad48 100644 --- a/src/editor-view.coffee +++ b/src/editor-view.coffee @@ -3,7 +3,7 @@ React = require 'react-atom-fork' {defaults} = require 'underscore-plus' TextBuffer = require 'text-buffer' Editor = require './editor' -EditorComponent = require './editor-component' +EditorComponent = require './text-editor-component' {deprecate} = require 'grim' # Public: Represents the entire visual pane in Atom. diff --git a/src/editor-component.coffee b/src/text-editor-component.coffee similarity index 100% rename from src/editor-component.coffee rename to src/text-editor-component.coffee