gabrielelana / vim-markdown

Markdown for Vim: a complete environment to create Markdown files with a syntax highlight that doesn't suck!
MIT License
740 stars 59 forks source link

Header, bold and italic syntax not rendering. Lists indentation works well though. #52

Closed RocketRobC closed 8 years ago

RocketRobC commented 8 years ago
screen shot 2016-08-14 at 11 41 29 pm

I can get these syntax working with other markdown plugins however, your list indentation is the best.

gabrielelana commented 8 years ago

Stupid question, are you sure that the plugin is loaded?

You can check with :scriptnames or, if you use Vundle, with :PluginList

RocketRobC commented 8 years ago

I've checked both those and looked at the vim-markdown/ftplugin dir to see which file is being loaded and it appears to be active.

gabrielelana commented 8 years ago

@RocketRobC another markdown plugin is interfering? Try to exclude every other plugin but this ad see if something changes

Otherwise, to make sure that the plugin is loaded, can you please post the output of :echo g:markdown_mapping_switch_status and :echo b:current_syntax?

To make really sure that the syntax is loaded:

If it's "markdown-xxx" the only thing I could think of it's a problem with the color scheme, for that you can try to :colorscheme default and see if something changes

RocketRobC commented 8 years ago

OK, I've gone through those steps and yes, there was a conflict. All appears to be working well now.

Thank you for the help.

gabrielelana commented 8 years ago

You welcome 😉