2009-09-01から1ヶ月間の記事一覧

インデント

力技 nnoremap <silent> <leader>e :call <SID>MyIndent()<cr> function! s:MyIndent() let line = getline('.') if match(line, '{') == 0 execute ":normal V%=" elseif match(line, '{') != -1 execute ":normal f{V%=" elseif match(line, '}') == 0 execute ":normal V%=" elseif</cr></sid></leader></silent>…

jQuery confirm plug-in

http://blog.smartnetwork.co.jp/staff/jquery-confirm-plugin のuiでないやつ http://gist.github.com/189800mouseoverするとテキストが表示されるがかっこ悪いのでなんとかする。

タグ名の取得

if( $(hoge).get(0).tagName.match(/span/i) ) { }