mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 22:00:07 +08:00
33 lines
466 B
VimL
33 lines
466 B
VimL
|
|
||
|
if "(foo)"
|
||
|
|
||
|
let x = "(foo)"
|
||
|
|
||
|
endif
|
||
|
|
||
|
( )
|
||
|
|
||
|
let x = ( "( )" )
|
||
|
|
||
|
let y = "("
|
||
|
\ . ")"
|
||
|
|
||
|
"("
|
||
|
)
|
||
|
\ . ")"
|
||
|
|
||
|
let z = ( '( ' ) . ' )'
|
||
|
|
||
|
let a = " if endif "
|
||
|
*cpo-M*
|
||
|
M When excluded, "%" matching will take backslashes into
|
||
|
account. Thus in "( \( )" and "\( ( \)" the outer
|
||
|
parenthesis match. When included "%" ignores
|
||
|
backslashes, which is Vi compatible.
|
||
|
|
||
|
let b = '\( \)'
|
||
|
let c = "\\( \\)"
|
||
|
|
||
|
let d = "( \\( )" . "\\( " . '\( \)' . "\\)"
|
||
|
|