From 3c08d56e23020cc66098f0861bdf4d4d93d0c967 Mon Sep 17 00:00:00 2001 From: David Ostrovsky Date: Thu, 15 Oct 2015 22:48:31 +0200 Subject: [PATCH] Upgrade Codemirror to version 5.7 This version added new modes, improvements and bug fixes. One of interesting new features is "Replace all" command that was added to search addon and can now be used in inline editor. To invoke this command from default mode: replaceAll: Shift-Ctrl-R (PC), Shift-Cmd-Alt-F (Mac) Change-Id: Ie7ed3d6139394424a9d682fdb1dba6003d490ef2 --- lib/codemirror/BUCK | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/codemirror/BUCK b/lib/codemirror/BUCK index 345d47ac74..9756f5d531 100644 --- a/lib/codemirror/BUCK +++ b/lib/codemirror/BUCK @@ -3,8 +3,8 @@ include_defs('//lib/codemirror/cm.defs') include_defs('//lib/codemirror/closure.defs') REPO = MAVEN_CENTRAL -VERSION = '5.6' -SHA1 = '5622ba0a953a6356572518eb14229ea1195cf6d0' +VERSION = '5.7' +SHA1 = '839a48a6c8d6b36193832a822911198ccba96bfe' if REPO == MAVEN_CENTRAL: URL = REPO + 'org/webjars/codemirror/%s/codemirror-%s.jar' % (VERSION, VERSION)