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

Commit d1569ae

Browse files
committed
Merge pull request #3075 from TomMalbran/tom/close-brackets-cleanup
Cleanup for Adding the CodeMirror built-in Auto Close Brackets addon
2 parents f6a2c23 + 643f27b commit d1569ae

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/command/Commands.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,13 @@ define(function (require, exports, module) {
7171
exports.EDIT_BLOCK_COMMENT = "edit.blockComment";
7272
exports.EDIT_LINE_UP = "edit.lineUp";
7373
exports.EDIT_LINE_DOWN = "edit.lineDown";
74+
exports.TOGGLE_CLOSE_BRACKETS = "edit.autoCloseBrackets";
7475

7576
// VIEW
7677
exports.VIEW_HIDE_SIDEBAR = "view.hideSidebar";
7778
exports.VIEW_INCREASE_FONT_SIZE = "view.increaseFontSize";
7879
exports.VIEW_DECREASE_FONT_SIZE = "view.decreaseFontSize";
7980
exports.VIEW_RESTORE_FONT_SIZE = "view.restoreFontSize";
80-
exports.TOGGLE_CLOSE_BRACKETS = "view.autoCloseBrackets";
8181
exports.TOGGLE_JSLINT = "debug.jslint";
8282
exports.SORT_WORKINGSET_BY_ADDED = "view.sortWorkingSetByAdded";
8383
exports.SORT_WORKINGSET_BY_NAME = "view.sortWorkingSetByName";

src/nls/root/strings.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,7 @@ define({
202202
"CMD_BLOCK_COMMENT" : "Toggle Block Comment",
203203
"CMD_LINE_UP" : "Move Line Up",
204204
"CMD_LINE_DOWN" : "Move Line Down",
205+
"CMD_TOGGLE_CLOSE_BRACKETS" : "Enable Close Brackets",
205206

206207
// View menu commands
207208
"VIEW_MENU" : "View",
@@ -210,7 +211,6 @@ define({
210211
"CMD_INCREASE_FONT_SIZE" : "Increase Font Size",
211212
"CMD_DECREASE_FONT_SIZE" : "Decrease Font Size",
212213
"CMD_RESTORE_FONT_SIZE" : "Restore Font Size",
213-
"CMD_TOGGLE_CLOSE_BRACKETS" : "Enable Close Brackets",
214214
"CMD_SORT_WORKINGSET_BY_ADDED" : "Sort by Added",
215215
"CMD_SORT_WORKINGSET_BY_NAME" : "Sort by Name",
216216
"CMD_SORT_WORKINGSET_BY_TYPE" : "Sort by Type",

0 commit comments

Comments
 (0)