From 2227a9bfeaccece2f346e076ccb00afca55c672b Mon Sep 17 00:00:00 2001 From: nightwing Date: Mon, 26 Mar 2012 11:51:24 +0400 Subject: [PATCH] rename --- demo/kitchen-sink/demo.js | 2 +- lib/ace/{multi_cursor.js => multi_select.js} | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) rename lib/ace/{multi_cursor.js => multi_select.js} (99%) diff --git a/demo/kitchen-sink/demo.js b/demo/kitchen-sink/demo.js index 8b1420a4..18798f01 100644 --- a/demo/kitchen-sink/demo.js +++ b/demo/kitchen-sink/demo.js @@ -606,6 +606,6 @@ commands.addCommand({ }); // add multiple cursor support to editor -require("ace/multi_cursor").MultiCursor(env.editor) +require("ace/multi_select").MultiSelect(env.editor); }); diff --git a/lib/ace/multi_cursor.js b/lib/ace/multi_select.js similarity index 99% rename from lib/ace/multi_cursor.js rename to lib/ace/multi_select.js index 14b73a1d..5a425169 100644 --- a/lib/ace/multi_cursor.js +++ b/lib/ace/multi_select.js @@ -20,7 +20,7 @@ * the Initial Developer. All Rights Reserved. * * Contributor(s): - * Fabian Jakobs + * Harutyun Amirjanyan * * Alternatively, the contents of this file may be used under the terms of * either the GNU General Public License Version 2 or later (the "GPL"), or @@ -541,7 +541,7 @@ function onMouseDown(e) { } // MultiCursor -function MultiCursor(editor) { +function MultiSelect(editor) { initSession(editor.session); editor.on("changeSession", function(e) { initSession(e.session) @@ -567,6 +567,6 @@ function MultiCursor(editor) { -exports.MultiCursor = MultiCursor; +exports.MultiSelect = MultiSelect; }); \ No newline at end of file