twitvim.vim をイジイジ
" Set syntax highlighting in timeline window. function! s:twitter_win_syntax(wintype) " Beautify the Twitter window with syntax highlighting. if has("syntax") && exists("g:syntax_on") " Reset syntax items in case there are any predefined in the new buffer. syntax clear + setfiletype twitvim
vimrc をイジイジ
autocmd FileType twitvim call s:twitvim_my_settings() function! s:twitvim_my_settings() nnoremap <buffer> <Leader>u yw:UserTwitter <C-R>+<CR> endfunction