Skip to content

Instantly share code, notes, and snippets.

@osyo-manga
Created July 23, 2015 00:36
Show Gist options
  • Select an option

  • Save osyo-manga/6b2a07493202ccb59237 to your computer and use it in GitHub Desktop.

Select an option

Save osyo-manga/6b2a07493202ccb59237 to your computer and use it in GitHub Desktop.
test
" デフォルトでは結合文字の左右に " " をつける
" 入力がなかった場合はスペースを挿入しないで結合する
" , で結合する場合は ", " で結合する
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