Fix keysnail init
This commit is contained in:
parent
08b76487c6
commit
1a2a7141ae
1 changed files with 15 additions and 13 deletions
|
@ -1,5 +1,5 @@
|
|||
// ========================== KeySnail Init File =========================== //
|
||||
|
||||
/*global key plugins hook command util*/
|
||||
// You can preserve your code in this area when generating the init file using GUI.
|
||||
// Put all your code except special key, set*key, hook, blacklist.
|
||||
// ========================================================================= //
|
||||
|
@ -279,8 +279,10 @@ key.setEditKey('C-M-y', function (ev) {
|
|||
if (!command.kill.ring.length)
|
||||
return;
|
||||
|
||||
let (ct = command.getClipboardText())
|
||||
(!command.kill.ring.length || ct != command.kill.ring[0]) && command.pushKillRing(ct);
|
||||
let (ct = command.getClipboardText()) {
|
||||
(!command.kill.ring.length || ct != command.kill.ring[0]) &&
|
||||
command.pushKillRing(ct);
|
||||
};
|
||||
|
||||
prompt.selector(
|
||||
{
|
||||
|
@ -289,7 +291,7 @@ key.setEditKey('C-M-y', function (ev) {
|
|||
callback: function (i) { if (i >= 0) key.insertText(command.kill.ring[i]); }
|
||||
}
|
||||
);
|
||||
}, 'Show kill-ring and select text to paste', true);
|
||||
}, 'Show kill-ring and select text to paste', true);
|
||||
|
||||
key.setEditKey('C-w', function (ev) {
|
||||
goDoCommand("cmd_copy");
|
||||
|
|
Loading…
Reference in a new issue