From 41d560c35f45753c5fd329dd4971961236b0d6eb Mon Sep 17 00:00:00 2001 From: Marcel Gerber Date: Thu, 2 Oct 2014 20:57:15 +0200 Subject: [PATCH] Change links to use new codemirror organization --- README.md | 2 +- src/editor/InlineTextEditor.js | 2 +- src/view/WorkspaceManager.js | 2 +- test/spec/InlineEditorProviders-test.js | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 9cbad0bf2f2..802ca6e73a9 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,7 @@ Awesome! _There are lots of ways you can help._ First read then learn how to [pull the repo and hack on Brackets](https://github.com/adobe/brackets/wiki/How-to-Hack-on-Brackets). The text editor inside Brackets is based on -[CodeMirror](http://github.com/marijnh/CodeMirror)—thanks to Marijn for +[CodeMirror](http://github.com/codemirror/CodeMirror)—thanks to Marijn for taking our pull requests, implementing feature requests and fixing bugs! See [Notes on CodeMirror](https://github.com/adobe/brackets/wiki/Notes-on-CodeMirror) for info on how we're using CodeMirror. diff --git a/src/editor/InlineTextEditor.js b/src/editor/InlineTextEditor.js index 2d9595ff4dd..66e5f2fa696 100644 --- a/src/editor/InlineTextEditor.js +++ b/src/editor/InlineTextEditor.js @@ -166,7 +166,7 @@ define(function (require, exports, module) { // Update display of inline editors when the hostEditor signals a redraw CodeMirror.on(this.info, "redraw", function () { // At the point where we get the redraw, CodeMirror might not yet have actually - // re-added the widget to the DOM. This is filed as https://github.com/marijnh/CodeMirror/issues/1226. + // re-added the widget to the DOM. This is filed as https://github.com/codemirror/CodeMirror/issues/1226. // For now, we can work around it by doing the refresh on a setTimeout(). window.setTimeout(function () { if (self.editor) { diff --git a/src/view/WorkspaceManager.js b/src/view/WorkspaceManager.js index 184ca0e0e27..f8bf6f29400 100644 --- a/src/view/WorkspaceManager.js +++ b/src/view/WorkspaceManager.js @@ -120,7 +120,7 @@ define(function (require, exports, module) { return; } - // FIXME (issue #4564) Workaround https://github.com/marijnh/CodeMirror/issues/1787 + // FIXME (issue #4564) Workaround https://github.com/codemirror/CodeMirror/issues/1787 triggerUpdateLayout(); if (!windowResizing) { diff --git a/test/spec/InlineEditorProviders-test.js b/test/spec/InlineEditorProviders-test.js index 65522658a7a..7bbf8404ff6 100644 --- a/test/spec/InlineEditorProviders-test.js +++ b/test/spec/InlineEditorProviders-test.js @@ -1373,8 +1373,8 @@ define(function (require, exports, module) { }); expect(inlineEditor).toHaveInlineEditorRange(toRange(start.line, end.line + 2)); - // TODO: can't do our usual undo + re-check range test at the end, becuase of - // marijnh/CodeMirror2 bug #487 + // TODO: can't do our usual undo + re-check range test at the end, because of + // codemirror/CodeMirror bug #487 });