11/06/28 07:20:31.02 S8H68tMD0
>>388
js <<EOM
// <C-a> で全選択
mappings.addUserMap(
[modes.INSERT,modes.COMMAND_LINE],
['<C-s>'],
'Select all',
function() { goDoCommand("cmd_selectAll"); },
{ noremap: true });
// <C-o> で Ignore
mappings.addUserMap(
[modes.INSERT, modes.COMMAND_LINE],
["<C-o>"],
"Ignore next key and send it directly to the webpage",
function () { modes.passNextKey = true; },
{ noremap: true });
EOM
お好きな方で