vote up 1 vote down star
1

My syntax -highlighting is broken for a file which Type is conf as follows:

File where the syntax highlighting does not work

alt text

The syntax highlighting works for all other files with the extension .markdown. However, the only difference between these files is that the other files' type is nothing, while that of a file, which has bug, its Conf.

File where the syntax highlighting works

alt text

How can you change the Type to nothing from Conf in Vim?

flag

2 Answers

vote up 3 vote down check

Try:

:setf none

or (equivalently):

:set ft=

If you want to do it automatically, you'll need to configure the syntax detection. Create a file (if it doesn't exist): vimfiles/after/filetype.vim or ~/.vim/after/filetype.vim. In this file, add the following line:

au BufNewFile,BufRead *.markdown        set ft=none

Alternatively, download the markdown syntax from here (I've not tried this) and configure with:

au BufNewFile,BufRead *.markdown        set ft=mkd

For more information:

:help :setf
:help 'filetype'
:help :autocmd
:help BufRead
:help BufNewFile

For information, the problem arises because the .markdown extension is not recognised, so Vim looks at the contents to try to determine what the file type is. Presumably there is something in your file that looks a little like a configuration file, so it does its best guess. The guess is carried out in the system filetype.vim, typically in c:\vim\vim72 or /usr/share/vim/vim72/filetype.vim (I think) and looks like this:

" Generic configuration file (check this last, it's just guessing!)
au BufNewFile,BufRead,StdinReadPost *
    \ if !did_filetype() && expand("<amatch>") !~ g:ft_ignore_pat
    \    && (getline(1) =~ '^#' || getline(2) =~ '^#' || getline(3) =~ '^#'
    \	|| getline(4) =~ '^#' || getline(5) =~ '^#') |
    \   setf conf |
    \ endif

This checks whether any of the first five lines start with a # and if they do and no other filetype has been matched, it sets the filetype to conf.

link|flag
You answer solves the "how-to" -part of the problem. Thanks for that! --- It seems that the problem is elsewhere, since the syntax highlighting does not get right. I am using these markdown codes: plasticboy.com/markdown-vim-mode – Masi Jul 27 at 9:59
I found the cause of the bug. The .mkd -file has a bug which breaks the syntax highlighting if # is the first character in the document. --- Bug reports are at github.com/plasticboy/vim-markdown/issues – Masi Jul 27 at 10:13
vote up 3 vote down
:set filetype=

will set the file type to none.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.