mirror of
https://github.com/preservim/nerdcommenter.git
synced 2025-02-21 04:22:40 +08:00
Corrected the SQL comment keys
the SQL from some strick ones, such as procedures or mySql needs an extra space after the '--' comment. so it would be '-- ' the correct sintaxis for the comment
This commit is contained in:
parent
c3756d1ecc
commit
00e41958df
@ -290,7 +290,7 @@ let s:delimiterMap = {
|
||||
\ 'pilrc': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' },
|
||||
\ 'pine': { 'left': '#' },
|
||||
\ 'plm': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' },
|
||||
\ 'plsql': { 'left': '--', 'leftAlt': '/*', 'rightAlt': '*/' },
|
||||
\ 'plsql': { 'left': '-- ', 'leftAlt': '/*', 'rightAlt': '*/' },
|
||||
\ 'po': { 'left': '#' },
|
||||
\ 'postscr': { 'left': '%' },
|
||||
\ 'pov': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' },
|
||||
@ -352,9 +352,9 @@ let s:delimiterMap = {
|
||||
\ 'specman': { 'left': '//' },
|
||||
\ 'spectre': { 'left': '//', 'leftAlt': '*' },
|
||||
\ 'spice': { 'left': '$' },
|
||||
\ 'sql': { 'left': '--' },
|
||||
\ 'sqlforms': { 'left': '--' },
|
||||
\ 'sqlj': { 'left': '--' },
|
||||
\ 'sql': { 'left': '-- ' },
|
||||
\ 'sqlforms': { 'left': '-- ' },
|
||||
\ 'sqlj': { 'left': '-- ' },
|
||||
\ 'sqr': { 'left': '!' },
|
||||
\ 'squid': { 'left': '#' },
|
||||
\ 'st': { 'left': '"' },
|
||||
|
Loading…
x
Reference in New Issue
Block a user