Usage of ```viml vs ```vim
g0xA52A2A opened this issue · 8 comments
g0xA52A2A commented
Both tpope's markdown.vim and github support the usage of
```vim
as opposed to
```viml
to syntax highlight code blocks of vim language. Would you be open to a pull request?
wsdjeg commented
any differences?
```vim
let g:ws = 11
```viml
let g:wsd = 11
EDIT: oh sorry ,I got it ,I have missunderstanded
g0xA52A2A commented
When reading in vim yes, although I'm actually using neoivm but I don't think this makes a difference.
wsdjeg commented
g0xA52A2A commented
You'll need to define g:markdown_fenced_languages
, for example I have the following.
let g:markdown_fenced_languages = [
\ 'c',
\ 'vim',
\ 'sh',
\ 'ruby',
\ 'python',
\ 'yaml',
\ 'sql',
\ ]
wsdjeg commented
sorry,I do not us markdown plugin.
Thanks ,it works well for me
mhinz commented