update CodeMirror 5.65.2

This commit is contained in:
tophf 2022-03-17 09:18:59 +03:00
parent 411d7f7b95
commit ee0826e538
5 changed files with 17 additions and 12 deletions

15
package-lock.json generated
View File

@ -10,7 +10,7 @@
"license": "GPL-3.0-only", "license": "GPL-3.0-only",
"dependencies": { "dependencies": {
"@eight04/draggable-list": "^0.3.0", "@eight04/draggable-list": "^0.3.0",
"codemirror": "5.65.1", "codemirror": "5.65.2",
"db-to-cloud": "^0.7.0", "db-to-cloud": "^0.7.0",
"jsonlint": "^1.6.3", "jsonlint": "^1.6.3",
"less-bundle": "github:openstyles/less-bundle#v0.1.0", "less-bundle": "github:openstyles/less-bundle#v0.1.0",
@ -23,6 +23,7 @@
"devDependencies": { "devDependencies": {
"archiver": "^4.0.1", "archiver": "^4.0.1",
"eslint": "^7.20.0", "eslint": "^7.20.0",
"fs-extra": "^9.0.0",
"glob": "^7.2.0", "glob": "^7.2.0",
"node-fetch": "^2.6.6", "node-fetch": "^2.6.6",
"sync-version": "^1.0.1", "sync-version": "^1.0.1",
@ -1571,9 +1572,9 @@
} }
}, },
"node_modules/codemirror": { "node_modules/codemirror": {
"version": "5.65.1", "version": "5.65.2",
"resolved": "https://registry.npmjs.org/codemirror/-/codemirror-5.65.1.tgz", "resolved": "https://registry.npmjs.org/codemirror/-/codemirror-5.65.2.tgz",
"integrity": "sha512-s6aac+DD+4O2u1aBmdxhB7yz2XU7tG3snOyQ05Kxifahz7hoxnfxIRHxiCSEv3TUC38dIVH8G+lZH9UWSfGQxA==" "integrity": "sha512-SZM4Zq7XEC8Fhroqe3LxbEEX1zUPWH1wMr5zxiBuiUF64iYOUH/JI88v4tBag8MiBS8B8gRv8O1pPXGYXQ4ErA=="
}, },
"node_modules/color-convert": { "node_modules/color-convert": {
"version": "1.9.3", "version": "1.9.3",
@ -8622,9 +8623,9 @@
} }
}, },
"codemirror": { "codemirror": {
"version": "5.65.1", "version": "5.65.2",
"resolved": "https://registry.npmjs.org/codemirror/-/codemirror-5.65.1.tgz", "resolved": "https://registry.npmjs.org/codemirror/-/codemirror-5.65.2.tgz",
"integrity": "sha512-s6aac+DD+4O2u1aBmdxhB7yz2XU7tG3snOyQ05Kxifahz7hoxnfxIRHxiCSEv3TUC38dIVH8G+lZH9UWSfGQxA==" "integrity": "sha512-SZM4Zq7XEC8Fhroqe3LxbEEX1zUPWH1wMr5zxiBuiUF64iYOUH/JI88v4tBag8MiBS8B8gRv8O1pPXGYXQ4ErA=="
}, },
"color-convert": { "color-convert": {
"version": "1.9.3", "version": "1.9.3",

View File

@ -10,7 +10,7 @@
}, },
"dependencies": { "dependencies": {
"@eight04/draggable-list": "^0.3.0", "@eight04/draggable-list": "^0.3.0",
"codemirror": "5.65.1", "codemirror": "5.65.2",
"db-to-cloud": "^0.7.0", "db-to-cloud": "^0.7.0",
"jsonlint": "^1.6.3", "jsonlint": "^1.6.3",
"less-bundle": "github:openstyles/less-bundle#v0.1.0", "less-bundle": "github:openstyles/less-bundle#v0.1.0",

View File

@ -1,4 +1,4 @@
## codemirror v5.65.1 ## codemirror v5.65.2
Files copied from NPM (node_modules): Files copied from NPM (node_modules):
* addon/comment/comment.js * addon/comment/comment.js

View File

@ -865,13 +865,17 @@
} }
function handleEsc() { function handleEsc() {
if (key == '<Esc>') { if (key == '<Esc>') {
// Clear input state and get back to normal mode.
clearInputState(cm);
if (vim.visualMode) { if (vim.visualMode) {
// Get back to normal mode.
exitVisualMode(cm); exitVisualMode(cm);
} else if (vim.insertMode) { } else if (vim.insertMode) {
// Get back to normal mode.
exitInsertMode(cm); exitInsertMode(cm);
} else {
// We're already in normal mode. Let '<Esc>' be handled normally.
return;
} }
clearInputState(cm);
return true; return true;
} }
} }

View File

@ -9842,7 +9842,7 @@
addLegacyProps(CodeMirror); addLegacyProps(CodeMirror);
CodeMirror.version = "5.65.1"; CodeMirror.version = "5.65.2";
return CodeMirror; return CodeMirror;