Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Change links to use new codemirror organization #9407

Merged
merged 1 commit into from
Oct 2, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/editor/InlineTextEditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion src/view/WorkspaceManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
4 changes: 2 additions & 2 deletions test/spec/InlineEditorProviders-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
});


Expand Down