2007-11-13から1日間の記事一覧

カーソル上の関数のマニュアルを表示

let g:php_man_url = 'http://jp.php.net/manual-lookup.php?lang=ja&pattern=' function! PhpMan() let b:word = expand( "<cword>:p" ) let $url = g:php_man_url.b:word " echo $url !open -a safari $url endfunction nnoremap <silent> <leader>h :call PhpMan()<CR></cr></leader></silent></cword>

開いてるファイルをSafariで確認

vim

let g:localhost = 'http://oppara/' let g:docroot = '/Users/oppara/Sites/' function! RunSafari() :write let b:fullpath = expand( "%:p" ) let $url = substitute( b:fullpath, g:docroot, g:localhost, '' ) "echo $url !open -a safari $url endfunc…