Show
Ignore:
Timestamp:
04/03/08 03:32:45 (8 months ago)
Author:
otsune
Message:

dotfiles/vimperator/otsune-vimperatorrc: sort fields with :mkvimperatorrc

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • dotfiles/vimperator/otsune-vimperatorrc

    r8655 r8693  
    1 " otsune vimperatorrc 
    2 " For vimperator 0.6pre 
    3 set guioptions=b 
    4 set verbose=9 
    5 set visualbell 
    6 set history=1000 
    7 set complete=sbgh 
    8 set editor=/opt/local/bin/gvim -f 
     1" otsune .vimperatorrc 
     2" 0.6pre (created: 2008/04/02 07:30:09) 
     3" Mappings 
    94 
    105" css 
     
    1510map } `a 
    1611 
    17 "]] 
    18 set nextpattern+=次のページ,\b次.*,→\b 
    19 "[[ 
    20 set previouspattern+=前のページ,\b前.*,\b← 
    21  
    22 "  
     12" 
    2313noremap j 5j 
    2414noremap k 5k 
     
    2616" select next/previous tab 
    2717map <Right> gt 
    28 map <Left>  gT 
    29 map <C-l>   gt 
    30 map <C-h>   gT 
     18map <Left> gT 
     19map <C-l> gt 
     20map <C-h> gT 
    3121 
    3222" move current tab left/right 
    3323map <S-Right> :tablast<CR> 
    34 map <S-Left>  :tabfirst<CR> 
    35 map <C-L>     :tabmove! +1<CR> 
    36 map <C-H>     :tabmove! -1<CR> 
     24map <S-Left> :tabfirst<CR> 
     25map <C-L> :tabmove! +1<CR> 
     26map <C-H> :tabmove! -1<CR> 
    3727 
    38 map ,b :set guioptions+=b<CR> 
    39 map ,B :set guioptions-=b<CR> 
     28" 
     29map <A-b> :set guioptions+=b<CR> 
     30"map ,b :set guioptions+=b<CR> 
     31map <A-B> :set guioptions-=b<CR> 
     32"map ,B :set guioptions-=b<CR> 
    4033map ,t :toggleToolbar<CR> 
    4134 
    42 " pukka plugin 
     35" Unhidden and hidden the menubar and the toolbar 
     36map <A-Up> :set guioptions+=mT<CR> 
     37map <A-Down> :set guioptions-=mT<CR> 
     38 
     39" Options 
     40set guioptions+=b 
     41"set titlestring=Vimperator 
     42set verbose=9 
     43set visualbell 
     44set history=1000 
     45set complete=sbgh 
     46"]] 
     47set nextpattern+=次のページ,\b次.*,→\b,下一頁,Следующая,다음 
     48"[[ 
     49set previouspattern+=前のページ,\b前.*,\b← 
     50" 
     51set editor=/opt/local/bin/gvim -f 
     52 
     53" pukka plugin variable 
    4354let g:pukka_normalizelink = "true" 
    4455 
     
    4758liberator.mappings.addUserMap([liberator.modes.NORMAL], ['<C-c>'], 
    4859    'Copy selected text or ', 
    49         function() { 
    50                 var sel = window.content.document.getSelection(); 
     60        function () { 
     61                var sel = liberator.buffer.getCurrentWord(); 
    5162                if (sel) { 
    5263                        liberator.copyToClipboard(sel); 
     
    5667                        liberator.echo('Stopped loading !'); 
    5768                } 
    58         } , {}); 
     69        } , {} 
     70); 
    5971EOM 
    6072 
    6173" Show feed-button to statusbar 
    6274javascript <<EOM 
    63 (function(){ 
     75(function () { 
    6476var feedPanel = document.createElement('statusbarpanel'); 
    6577var feedButton = document.getElementById('feed-button'); 
    66 feedPanel.setAttribute('id','feed-panel-clone'); 
    67 feedPanel.appendChild(feedButton.cloneNode(true)); 
    68 feedButton.parentNode.removeChild(feedButton); 
    69 document.getElementById('status-bar').insertBefore(feedPanel,document.getElementById('security-button')); 
     78    feedPanel.setAttribute('id','feed-panel-clone'); 
     79    feedPanel.appendChild(feedButton.cloneNode(true)); 
     80    feedButton.parentNode.removeChild(feedButton); 
     81    document.getElementById('status-bar') 
     82        .insertBefore(feedPanel,document.getElementById('security-button')); 
    7083})(); 
    7184EOM 
     85" Abbreviations 
    7286 
    73 " vim:set sw=4 ts=4 sts=0 syntax=vimperator: 
     87source! ~/.vimperatorrc.local 
     88 
     89" vim: set ft=vimperator: