Created
July 23, 2015 00:36
-
-
Save osyo-manga/6b2a07493202ccb59237 to your computer and use it in GitHub Desktop.
test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " デフォルトでは結合文字の左右に " " をつける | |
| " 入力がなかった場合はスペースを挿入しないで結合する | |
| " , で結合する場合は ", " で結合する | |
| let g:jplus#input_config = { | |
| \ "__DEFAULT__" : { | |
| \ "delimiter_format" : " %d " | |
| \ }, | |
| \ "__EMPTY__" : { | |
| \ "delimiter_format" : "%d" | |
| \ }, | |
| \ "," : { | |
| \ "delimiter_format" : "%d " | |
| \ } | |
| \} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment