1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 04:00:03 +08:00
SpaceVim/bundle/vim-jplus
2020-06-13 14:06:35 +08:00
..
autoload Add bundle dir (#3542) 2020-06-13 14:06:35 +08:00
doc Add bundle dir (#3542) 2020-06-13 14:06:35 +08:00
plugin Add bundle dir (#3542) 2020-06-13 14:06:35 +08:00
.gitignore Add bundle dir (#3542) 2020-06-13 14:06:35 +08:00
README.md Add bundle dir (#3542) 2020-06-13 14:06:35 +08:00

jplus.vim

結合時に区切り文字を入力したり、行継続のキーワード(\ 等)などを削除して行結合を行うプラグインです。

Screencapture

任意の文字を挿入して結合する

jplus1

先頭の \ を取り除いて結合する

jplus2

Example

" J の挙動を jplus.vim で行う
nmap J <Plug>(jplus)
vmap J <Plug>(jplus)

" getchar() を使用して挿入文字を入力します
nmap <Leader>J <Plug>(jplus-getchar)
vmap <Leader>J <Plug>(jplus-getchar)

" input() を使用したい場合はこちらを使用して下さい
" nmap <Leader>J <Plug>(jplus-input)
" vmap <Leader>J <Plug>(jplus-input)

" <Plug>(jplus-getchar) 時に左右に空白文字を入れたい場合
" %d は入力した結合文字に置き換えられる
let g:jplus#config = {
\	"_" : {
\		"delimiter_format" : ' %d '
\	}
\}