Fix keysnail init

This commit is contained in:
Tom Willemse 2015-09-03 16:04:29 +02:00
parent 08b76487c6
commit 1a2a7141ae

View file

@ -1,5 +1,5 @@
// ========================== KeySnail Init File =========================== // // ========================== KeySnail Init File =========================== //
/*global key plugins hook command util*/
// You can preserve your code in this area when generating the init file using GUI. // 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. // 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) if (!command.kill.ring.length)
return; return;
let (ct = command.getClipboardText()) let (ct = command.getClipboardText()) {
(!command.kill.ring.length || ct != command.kill.ring[0]) && command.pushKillRing(ct); (!command.kill.ring.length || ct != command.kill.ring[0]) &&
command.pushKillRing(ct);
};
prompt.selector( prompt.selector(
{ {