mirror of
https://github.com/preservim/nerdcommenter.git
synced 2025-11-08 09:53:47 -05: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:
@@ -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': '"' },
|
||||
|
||||
Reference in New Issue
Block a user