私の .vimrc にこれを追加します。
autocmd BufNewFile,BufRead *.markdown setfiletype octopress
しかし、 xxx.markdown ファイルを開いてコマンドを入力すると、すべてが正常に機能するため、機能していないようですsetfiletype octopress
。
これが私の無傷の.vimrcです
set nocompatible
syntax on
filetype off
colorscheme desert
set nu
set mouse=a
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
Bundle 'gmarik/vundle'
filetype plugin indent on
Bundle 'vim-octopress'
autocmd FileType markdown setfiletype octopress
誰かが私を助けて、このことをデバッグする方法を教えてくれることを願っています...