incremental changes

This commit is contained in:
2019-01-02 16:49:47 +03:00
parent d8a7e4fce5
commit 1c5c4b400a
7 changed files with 44 additions and 10 deletions

View File

@@ -1,6 +1,7 @@
let s:comment_map = {
\ 'c': '\/\/',
\ 'cpp': '\/\/',
\ 'go': '\/\/',
\ 'java': '\/\/',
\ 'javascript': '\/\/',
\ 'vhdl': '--',
@@ -15,11 +16,13 @@ let s:comment_map = {
let s:block_map = {
\ 'c': ['\/\*', '\*\/'],
\ 'java': ['\/\*', '\*\/'],
\ 'go': ['\/\*', '\*\/'],
\ 'cpp': ['\/\*', '\*\/'],
\ 'python': ['"""', '"""'],
\ 'vim': ['" {{{', '" }}}'],
\ 'css': ['\/\*', '\*\/'],
\ 'html': ['<!--', '-->'],
\ 'jinja': ['{#', '#}'],
\ 'javascript': ['\/\*', '\*\/']
\ }