Skip to content

Instantly share code, notes, and snippets.

View teramako's full-sized avatar

teramako teramako

View GitHub Profile
@teramako
teramako / page-nav.js
Last active December 18, 2015 16:59 — forked from anonymous/page-nav.js
[Vimperator]ページ内の見出し的要素へジャンプする奴
"use strict";
/**
* :nav コマンドでテキトウに補完を使いましょう
* :nnoremap v :nav<Space> とかすると快適かも
*/
var selector = "h1, h2, h3, h4, main, [role=main], [role=navigation], [role=search]";
var cache = new WeakMap;
function getJumpList (force) {
@teramako
teramako / es5-lazygetter.js
Created June 2, 2012 03:34 — forked from tetsuharuohzeki/es5-lazygetter.js
ES5 lazy getter function
function lazyGetter(aObject, aName, aLambda) {
Object.defineProperty(aObject, aName, {
get: function () {
var val = aLambda.call(aObject);
Object.defineProperty(aObject, aName, { value: val, writable: true });
return val;
},
configurable: true,
enumerable : true,
});
XML.ignoreProcessingInstructions = false;
let xml = <>
<?xml-stylesheet type="text/css" href="chrome://browser/skin/"?>
<window id="twitt-popup"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
xmlns:xhtml="http://www.w3.org/1999/xhtml"
pack="start"
ondblclick="window.close()">
<box id="dialog" style="padding: 10px; border: 2px solid #7B969C;">
<hbox align="center" pack="center">
@teramako
teramako / jetpack.txt
Created January 21, 2010 10:52 — forked from azu/jetpack.txt
azu さんのjetpackに関するメモに返信
// http://gyazo.com/39e1c43d0529375b589843b9e20d26ed.png
- Jetpack
- Jetpackの制限
可能かどうか
- ショートカットキー
グローバルなショートカットキーのフックは可能?
Documentのイベントリスナーで実装する場合、画像ページでもショートカットキーは有効?