mirror of
https://github.com/preservim/nerdcommenter.git
synced 2025-11-11 11:13:47 -05:00
Compare commits
2 Commits
master
...
b4a57a0b4f
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b4a57a0b4f | ||
|
|
c7c99edfb7 |
@@ -406,7 +406,6 @@ let s:delimiterMap = {
|
|||||||
\ 'texmf': { 'left': '%' },
|
\ 'texmf': { 'left': '%' },
|
||||||
\ 'tf': { 'left': '#' },
|
\ 'tf': { 'left': '#' },
|
||||||
\ 'tidy': { 'left': '#' },
|
\ 'tidy': { 'left': '#' },
|
||||||
\ 'tjp': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' },
|
|
||||||
\ 'tla': { 'left': '\\*', 'leftAlt': '(*', 'rightAlt': '*)' },
|
\ 'tla': { 'left': '\\*', 'leftAlt': '(*', 'rightAlt': '*)' },
|
||||||
\ 'tli': { 'left': '#' },
|
\ 'tli': { 'left': '#' },
|
||||||
\ 'tmux': { 'left': '#' },
|
\ 'tmux': { 'left': '#' },
|
||||||
@@ -422,7 +421,6 @@ let s:delimiterMap = {
|
|||||||
\ 'txt2tags': { 'left': '%' },
|
\ 'txt2tags': { 'left': '%' },
|
||||||
\ 'typescript': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' },
|
\ 'typescript': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' },
|
||||||
\ 'typescriptreact': { 'left': '//', 'leftAlt': '{/*', 'rightAlt': '*/}' },
|
\ 'typescriptreact': { 'left': '//', 'leftAlt': '{/*', 'rightAlt': '*/}' },
|
||||||
\ 'typst': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' },
|
|
||||||
\ 'uc': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' },
|
\ 'uc': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' },
|
||||||
\ 'uc4': { 'left': '!' },
|
\ 'uc4': { 'left': '!' },
|
||||||
\ 'uil': { 'left': '!' },
|
\ 'uil': { 'left': '!' },
|
||||||
@@ -667,7 +665,7 @@ function! s:CommentBlock(top, bottom, lSide, rSide, forceNested) abort
|
|||||||
"alternative delimiters (if THEY are) as the comment will be better and more
|
"alternative delimiters (if THEY are) as the comment will be better and more
|
||||||
"accurate with multipart delimiters
|
"accurate with multipart delimiters
|
||||||
let switchedDelims = 0
|
let switchedDelims = 0
|
||||||
if !s:Multipart() && g:NERDAllowAnyVisualDelims && s:AltMultipart()
|
if !s:Multipart() && !g:NERDAllowAnyVisualDelims && s:AltMultipart()
|
||||||
let switchedDelims = 1
|
let switchedDelims = 1
|
||||||
call nerdcommenter#SwitchToAlternativeDelimiters(0)
|
call nerdcommenter#SwitchToAlternativeDelimiters(0)
|
||||||
endif
|
endif
|
||||||
@@ -1084,7 +1082,7 @@ function! s:CommentRegion(topLine, topCol, bottomLine, bottomCol, forceNested) a
|
|||||||
|
|
||||||
"switch delimiters (if we can) if the current set isn't multipart
|
"switch delimiters (if we can) if the current set isn't multipart
|
||||||
let switchedDelims = 0
|
let switchedDelims = 0
|
||||||
if !s:Multipart() && s:AltMultipart() && g:NERDAllowAnyVisualDelims
|
if !s:Multipart() && s:AltMultipart() && !g:NERDAllowAnyVisualDelims
|
||||||
let switchedDelims = 1
|
let switchedDelims = 1
|
||||||
call nerdcommenter#SwitchToAlternativeDelimiters(0)
|
call nerdcommenter#SwitchToAlternativeDelimiters(0)
|
||||||
endif
|
endif
|
||||||
|
|||||||
Reference in New Issue
Block a user