Changing filetype based on file extention in vim

ぃ、小莉子 提交于 2019-12-02 04:33:24

问题


I want to change the filetype based on file extension in vim.

I have the following code in the my .vimrc

autocmd BufNew,BufNewFile,BufRead *.txt,*.text,*.md,*.markdown setlocal ft=markdown

But when I open a file with the extention .md file, the filetype is not changed. I run :set ft command and it shows the output as filetype=modula2.

Am I doing anything wrong?

Edit:

I started to debug by renaming my old .vimrc file and created a new one with just this line. It was working properly. Then I replaced my old .vimrc file and everything seems to be working fine. Guess it was because of some issues in some addon which I am using.

But accepting ZyX's answer, since it thought me an alternate way to do this.


回答1:


Wondering whether this line goes before or after filetype … on. In the former case you should try putting it (your autocommand) after this line. Better if you put it into ~/.vim/ftdetect/markdown.vim and use setfiletype markdown instead of setlocal ft=markdown:

augroup filetypedetect
    autocmd BufNew,BufNewFile,BufRead *.txt,*.text,*.md,*.markdown :setfiletype markdown
augroup END

: it is the default way of doing such things. ~/.vim must go before /usr/share/vim/* paths in 'runtimepath' option in this case (it does by default).




回答2:


I created a ~/vim/ftdetect/markdown.vim file with this line

autocmd BufNewFile,BufRead *.md,*.mkdn,*.markdown :set filetype=markdown

Reading the docs for filetype, setfiletype only sets if filetype is unset. So you need to use set for an unconditional change to a filetype.




回答3:


I was able to get syntax highlighting for alternate file extensions by creating renamed copies of the target syntax file in the Vim\vim74\syntax directory.

To make *.md open as a .markdown:

copy markdown.vim md.vim

or paste a copy of markdown.vim to the syntax folder, then rename the copy md.vim.

(Running vim74 on win7)



来源:https://stackoverflow.com/questions/12767024/changing-filetype-based-on-file-extention-in-vim

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!