Skip to content

Commit

Permalink
bump to 1.18.3
Browse files Browse the repository at this point in the history
  • Loading branch information
w8tcha committed Mar 17, 2022
1 parent 560050e commit 362daae
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions codemirror/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
(function() {
CKEDITOR.plugins.add("codemirror", {
lang: "af,ar,bg,bn,bs,ca,cs,cy,da,de,el,en-au,en-ca,en-gb,en,eo,es,et,eu,fa,fi,fo,fr-ca,fr,gl,gu,he,hi,hr,hu,is,it,ja,ka,km,ko,ku,lt,lv,mk,mn,ms,nb,nl,no,pl,pt-br,pt,ro,ru,sk,sl,sr-latn,sr,sv,th,tr,ug,uk,vi,zh-cn,zh", // %REMOVE_LINE_CORE%
version: "1.18.2",
version: "1.18.3",
init: function (editor) {
var command = editor.addCommand("codemirrorAbout", new CKEDITOR.dialogCommand("codemirrorAboutDialog"));
command.modes = { wysiwyg: 1, source: 1 };
Expand Down Expand Up @@ -920,7 +920,9 @@
key !== 'Ctrl-I' &&
key !== 'Ctrl-U' &&
key !== 'Ctrl-Y' &&
key !== 'Ctrl-Z') {
key !== 'Ctrl-Z' &&
key !== 'Ctrl-C' &&
key !== 'Ctrl-V') {
(function(command) {
editorExtraKeys[key] = function() {
editor.execCommand(command);
Expand Down

0 comments on commit 362daae

Please sign in to comment.