Created
September 25, 2008 14:37
-
-
Save yaotti/12830 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo "loading..." | |
set focuscontent | |
set titlestring=Firefox | |
map h <C-p> | |
map l <C-n> | |
map j 3j | |
map k 3k | |
map J <Space> | |
map K <S-Space> | |
" ページのCSS on/off | |
map ! :set invum<CR> | |
" using lookupdictionary.js | |
map E :goo<Space> | |
map e :eijiro<Space> | |
map a : | |
" quickmark設定 | |
" godで:o delisious, gndで:tabopen delisious | |
qmark d http://del.icio.us | |
qmark h http://b.hatena.ne.jp | |
qmark m http://mail.google.com | |
qmark g http://google.com/ig | |
qmark s http://stack.nayutaya.jp | |
qmark e http://www.evernote.com | |
qmark n http://nicovideo.jp/ranking/mylist/daily/all | |
qmark t http://twitter.com | |
qmark r http://rememberthemilk.com | |
"feedSomeKey.js | |
autocmd LocationChange .* :fmapc | |
" Gmail | |
js <<EOF | |
autocommands.add('LocationChange',/mail\.google\.com\/(mail|a)\//,[ | |
'js plugins.feedKey.setup(', | |
'"c / y j k n p o u e x s r a # [ ] z ? gi gs gt gd ga gc".split(/ +/).map(function(i) [i, "4" + i])', | |
');' | |
].join('')); | |
EOF | |
"RememberTheMilk | |
js <<EOF | |
autocommands.add('LocationChange',/www\.rememberthemilk\.com\//, | |
'js plugins.feedKey.setup("t c p r 1 2 3 4 a n i k j z <Tab> <Delete> ?".split(/ +/));'); | |
EOF | |
" fastladder | |
js <<EOF | |
autocommands.add('LocationChange',/fastladder\.com\/reader\//, | |
'js plugins.feedKey.setup("j k s ? r a p v c <Space> <S-Space> z Z < > b i".split(/ +/));'); | |
EOF | |
"open pinned items | |
autocmd LocationChange http://fastladder\.com/reader/ :fmap O o | |
"open current item in the background tab | |
autocmd LocationChange http://fastladder\.com/reader/ :fmap o vj | |
"pin and show the next item | |
autocmd LocationChange http://fastladder\.com/reader/ :fmap p pj | |
"for ldrize | |
autocmd .*\nldrize\.user\.js :fmap f f | |
:fmapc | |
:feedmapclear | |
"google suggest | |
set complete=S | |
"ビープ音を鳴らさずビジュアルベルを使用 | |
set visualbell | |
"ビジュアルベルを無効化 | |
set visualbellstyle=display:none; | |
"tabキーを押さなくても自動補完の候補を表示 | |
set wildoptions=auto | |
"自動補完の設定 | |
set complete=sl | |
"set verbose=9 | |
echo "done" | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
plugins | |
char-hints-mod.js | |
hatenabookmark_show.js | |
lookupDictionary.js | |
feedSomeKeys.js | |
ldrize_cooperation.js | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment