1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826
|
#!/bin/bash
ble-import keymap.vi
# surround.vim (https://github.com/tpope/vim-surround) の模倣実装
#
# 現在以下のみに対応している。
#
# nmap: ys{move}{ins}
# nmap: yss{ins}
# nmap: yS{move}{ins}
# nmap: ySS{ins} または ySs{ins}
# xmap: S{ins}
# xmap: gS{ins}
#
# {ins} ~ / ?./
#
# 空白を前置した場合は、囲まれる文字列の両端に半角空白を1つずつ付加する。
# 最後の文字によって囲み文字を指定する。
#
# <, t (未対応) タグで囲む
# 右括弧類 括弧で囲む
# 左括弧類 括弧で囲む
# [a-zA-Z] エラー
# 他の文字 その文字で囲む
#
# 注意: surround.vim と違って、
# テキストオブジェクト等に対する引数は有効である。
# または、aw は iw と異なる位置に挿入する。
#
# 注意: surround.vim と違って、
# 2ys3s のような引数の指定を行うことができる。
# これは 2y3y と同様に現在行から 6 行に亘って作用する。
#
# 注意: . によってこのオペレータを繰り返すとき、
# 再度入力を求める surround.vim と違って、
# 前回使用した区切り文字を使用する。
#
# 注意: surround.vim では矩形選択の末尾拡張を判定できないため、
# S は非末尾拡張で gS は末尾拡張として働くが、
# この実装では S は現在末尾拡張状態を使い gS は末尾拡張を常に行う。
#
# nmap: ds{del}
# nmap: cs{del}{ins}
# nmap: cS{del}{ins}
#
# {del} ~ /([0-9]+| )?./
#
# 削除される囲み文字を指定する。
# [0-9]+ を指定した場合は引数に対する倍率となる。
# 空白を前置した場合は囲まれた文字列の両端の空白を trim する。
#
# 最後の文字によって囲み文字を指定する。
#
# b()B{}r[]a<> 括弧を削除する。左括弧を指定したとき囲まれた文字列は trim される。
# wW 範囲を指定するのみで、何も削除しない。
# ps (未対応) 範囲を指定するのみで、何も削除しない。
# tT タグ。T を用いたとき囲まれた文字列は trim される。
# / /* ... */ で囲まれた領域を削除する。
# 他の文字 その文字を、行内で左右に探して対で削除する。
#
# {ins} ~ / ?./
#
# 代わりに挿入される囲み文字を指定する。ys, yss と同じ。
#
# 注意: . によってこの操作を繰り返すとき、
# surround.vim では {del} を空文字列とし {ins} について入力を求めるが、
# この実装では前回使用した {del} と {ins} を使用して動作する。
#
# 以下には対応していない。
#
# imap: <C-S>
# imap: <C-G>s
# imap: <C-G>S
#
bleopt/declare -n vim_surround_45 $'$(\r)' # ysiw-
bleopt/declare -n vim_surround_61 $'$((\r))' # ysiw=
bleopt/declare -n vim_surround_q \" # ysiwQ
bleopt/declare -n vim_surround_Q \' # ysiwq
bleopt/declare -v vim_surround_omap_bind 1
#------------------------------------------------------------------------------
# util
## @fn ble/lib/vim-surround.sh/get-char-from-key key
## @param[in] key
## @var[out] ret
function ble/lib/vim-surround.sh/get-char-from-key {
local key=$1
if ! ble-decode-key/ischar "$key"; then
local flag=$((key&_ble_decode_MaskFlag)) code=$((key&_ble_decode_MaskChar))
if ((flag==_ble_decode_Ctrl&&63<=code&&code<128&&(code&0x1F)!=0)); then
((key=code==63?127:code&0x1F))
else
return 1
fi
fi
ble/util/c2s "$key"
return 0
}
function ble/lib/vim-surround.sh/async-inputtarget.hook {
local mode=$1 hook=${@:2:$#-2} key=${@:$#} ret
if ! ble/lib/vim-surround.sh/get-char-from-key "$key"; then
ble/widget/vi-command/bell
return 1
fi
local c=$ret
if [[ :$mode: == *:digit:* && $c == [0-9] ]]; then
_ble_edit_arg=$_ble_edit_arg$c
_ble_decode_key__hook="ble/lib/vim-surround.sh/async-inputtarget.hook digit $hook"
return 147
elif [[ :$mode: == *:init:* && $c == ' ' ]]; then
_ble_decode_key__hook="ble/lib/vim-surround.sh/async-inputtarget.hook space $hook"
return 147
fi
if [[ $c == [$'\e\003'] ]]; then # C-[, C-c
ble/widget/vi-command/bell
return 1
else
[[ $c == \' ]] && c="'\''"
[[ $mode == space ]] && c=' '$c
builtin eval -- "$hook '$c'"
fi
}
function ble/lib/vim-surround.sh/async-inputtarget {
local IFS=$_ble_term_IFS
_ble_decode_key__hook="ble/lib/vim-surround.sh/async-inputtarget.hook init:digit $*"
return 147
}
function ble/lib/vim-surround.sh/async-inputtarget-noarg {
local IFS=$_ble_term_IFS
_ble_decode_key__hook="ble/lib/vim-surround.sh/async-inputtarget.hook init $*"
return 147
}
_ble_lib_vim_surround_previous_tag=html
## @fn ble/lib/vim-surround.sh/load-template ins
## @param[in] ins
## @var[out] template
function ble/lib/vim-surround.sh/load-template {
local ins=$1
# read user settings
if [[ ${ins//[0-9]} && ! ${ins//[_a-zA-Z0-9]} ]]; then
local optname=bleopt_vim_surround_$ins
template=${!optname}
[[ $template ]] && return 0
fi
local ret; ble/util/s2c "$ins"
local optname=bleopt_vim_surround_$ret
template=${!optname}
[[ $template ]] && return 0
# default
case $ins in
(['<tT']*)
local tag=${ins:1}; tag=${tag//$'\r'/' '}
if [[ ! $tag ]]; then
tag=$_ble_lib_vim_surround_previous_tag
else
tag=${tag%'>'}
_ble_lib_vim_surround_previous_tag=$tag
fi
local end_tag=${tag%%["$_ble_term_IFS"]*}
template="<$tag>"$'\r'"</$end_tag>" ;;
('(') template=$'( \r )' ;;
('[') template=$'[ \r ]' ;;
('{') template=$'{ \r }' ;;
(['b)']) template=$'(\r)' ;;
(['r]']) template=$'[\r]' ;;
(['B}']) template=$'{\r}' ;;
(['a>']) template=$'<\r>' ;;
([a-zA-Z]) return 1 ;;
(*) template=$ins ;;
esac
} &>/dev/null
## @fn ble/lib/vim-surround.sh/surround text ins opts
## @param[in] text
## @param[in] ins
## @param[in] opts
## linewise
## 囲まれた文字列を新しい独立した業にします。
## cS yS VS VgS などで使用します。
## indent
## linewise のとき、新しい行のインデントを追加します。
##
## @var[in] beg
## @var[out] ret
function ble/lib/vim-surround.sh/surround {
local text=$1 ins=$2 opts=$3
local instype=
[[ $ins == $'\x1D' ]] && ins='}' instype=indent # C-], C-}
local has_space=
[[ $ins == ' '?* ]] && ins=${ins:1} has_space=1
local template=
ble/lib/vim-surround.sh/load-template "$ins" || return 1
local prefix= suffix=
if [[ $template == *$'\r'* ]]; then
prefix=${template%%$'\r'*}
suffix=${template#*$'\r'}
else
prefix=$template
suffix=$template
fi
if [[ $prefix == *' ' && $suffix == ' '* ]]; then
prefix=${prefix::${#prefix}-1}
suffix=${suffix:1}
has_space=1
fi
if [[ $instype == indent || :$opts: == *:linewise:* ]]; then
ble-edit/content/find-logical-bol "$beg"; local bol=$ret
ble-edit/content/find-non-space "$bol"; local nol=$ret
local indent=
if [[ $instype == indent ]] || ((bol<nol)); then
indent=${_ble_edit_str:bol:nol-bol}
elif [[ $has_space ]]; then
indent=' '
fi
text=$indent$text
if [[ $instype == indent || :$opts: == *:indent:* ]]; then
ble/keymap:vi/string#increase-indent "$text" "$bleopt_indent_offset"; text=$ret
fi
text=$'\n'$text$'\n'$indent
# ToDo: 初めから text に改行が含まれていた場合は、
# 更にここで = による自動インデントを実行する?
elif [[ $has_space ]]; then
text=' '$text' '
fi
ret=$prefix$text$suffix
}
#------------------------------------------------------------------------------
# async-read-tagname
function ble/lib/vim-surround.sh/async-read-tagname {
ble/keymap:vi/async-commandline-mode "$1"
_ble_edit_PS1='<'
_ble_keymap_vi_cmap_before_widget=ble/lib/vim-surround.sh/async-read-tagname/.before-command.hook
return 147
}
function ble/lib/vim-surround.sh/async-read-tagname/.before-command.hook {
if [[ ${KEYS[0]} == 62 ]]; then # '>'
ble/widget/self-insert
ble/widget/vi_cmap/accept
ble/decode/widget/suppress-widget
fi
}
#------------------------------------------------------------------------------
# ys yss yS ySS ySs vS vgS
_ble_lib_vim_surround_ys_type= # ys | yS | vS | vgS
_ble_lib_vim_surround_ys_args=()
_ble_lib_vim_surround_ys_ranges=()
## @fn ble/highlight/layer:region/mark:vi_surround/get-selection
## 入力待ち状態の時の領域着色を定義します。
## @arr[out] selection
function ble/highlight/layer:region/mark:vi_surround/get-selection {
local type=$_ble_lib_vim_surround_ys_type
local context=${_ble_lib_vim_surround_ys_args[2]}
if [[ $context == block ]]; then
local -a sub_ranges
sub_ranges=("${_ble_lib_vim_surround_ys_ranges[@]}")
selection=()
local sub
for sub in "${sub_ranges[@]}"; do
ble/string#split sub : "$sub"
((sub[0]<sub[1])) || continue
ble/array#push selection "${sub[0]}" "${sub[1]}"
done
else
selection=("${_ble_lib_vim_surround_ys_args[@]::2}")
# convert to linewise
if [[ $context == char && ( $type == yS || $type == ySS || $type == vgS ) ]]; then
local ret
ble-edit/content/find-logical-bol "${selection[0]}"; selection[0]=$ret
ble-edit/content/find-logical-eol "${selection[1]}"; selection[1]=$ret
fi
fi
}
function ble/highlight/layer:region/mark:vi_surround/get-face {
face=region_target
}
function ble/lib/vim-surround.sh/operator.impl {
_ble_lib_vim_surround_ys_type=$1; shift
_ble_lib_vim_surround_ys_args=("$@")
[[ $3 == block ]] && _ble_lib_vim_surround_ys_ranges=("${sub_ranges[@]}")
_ble_edit_mark_active=vi_surround
ble/lib/vim-surround.sh/async-inputtarget-noarg ble/widget/vim-surround.sh/ysurround.hook1
ble/lib/vim-surround.sh/ysurround.repeat/entry
return 147
}
function ble/keymap:vi/operator:yS { ble/lib/vim-surround.sh/operator.impl yS "$@"; }
function ble/keymap:vi/operator:ys { ble/lib/vim-surround.sh/operator.impl ys "$@"; }
function ble/keymap:vi/operator:ySS { ble/lib/vim-surround.sh/operator.impl ySS "$@"; }
function ble/keymap:vi/operator:yss { ble/lib/vim-surround.sh/operator.impl yss "$@"; }
function ble/keymap:vi/operator:vS { ble/lib/vim-surround.sh/operator.impl vS "$@"; }
function ble/keymap:vi/operator:vgS { ble/lib/vim-surround.sh/operator.impl vgS "$@"; }
function ble/widget/vim-surround.sh/ysurround.hook1 {
local ins=$1
if local rex='^ ?[<tT]$'; [[ $ins =~ $rex ]]; then
ble/lib/vim-surround.sh/async-read-tagname "ble/widget/vim-surround.sh/ysurround.hook2 '$ins'"
else
ble/widget/vim-surround.sh/ysurround.core "$ins"
fi
}
function ble/widget/vim-surround.sh/ysurround.hook2 {
local ins=$1 tagName=$2
ble/widget/vim-surround.sh/ysurround.core "$ins$tagName"
}
function ble/widget/vim-surround.sh/ysurround.core {
local ins=$1
_ble_edit_mark_active= # mark:vi_surround を解除
local ret
# saved arguments
local type=$_ble_lib_vim_surround_ys_type
local beg=${_ble_lib_vim_surround_ys_args[0]}
local end=${_ble_lib_vim_surround_ys_args[1]}
local context=${_ble_lib_vim_surround_ys_args[2]}
local sub_ranges; sub_ranges=("${_ble_lib_vim_surround_ys_ranges[@]}")
_ble_lib_vim_surround_ys_type=
_ble_lib_vim_surround_ys_args=()
_ble_lib_vim_surround_ys_ranges=()
if [[ $context == block ]]; then
local isub=${#sub_ranges[@]} sub
local smin= smax= slpad= srpad=
while ((isub--)); do
local sub=${sub_ranges[isub]}
local stext=${sub#*:*:*:*:*:}
ble/string#split sub : "${sub::${#sub}-${#stext}}"
smin=${sub[0]} smax=${sub[1]}
slpad=${sub[2]} srpad=${sub[3]}
if ! ble/lib/vim-surround.sh/surround "$stext" "$ins"; then
ble/widget/vi-command/bell
return 1
fi
stext=$ret
((slpad)) && { ble/string#repeat ' ' "$slpad"; stext=$ret$stext; }
((srpad)) && { ble/string#repeat ' ' "$srpad"; stext=$stext$ret; }
ble/widget/.replace-range "$smin" "$smax" "$stext"
done
else
# text
local text=${_ble_edit_str:beg:end-beg}
if [[ $type == ys ]]; then
if local rex=$'[ \t\n]+$'; [[ $text =~ $rex ]]; then
# 範囲末端の空白は囲む対象としない
((end-=${#BASH_REMATCH}))
text=${_ble_edit_str:beg:end-beg}
fi
fi
# Note: char から linewise への昇格条件の変更は以下の関数にも反映させる必要がある:
# ble/highlight/layer:region/mark:vi_surround/get-selection
local opts=
if [[ $type == yS || $type == ySS || $context == char && $type == vgS ]]; then
opts=linewise:indent
elif [[ $context == line ]]; then
opts=linewise
fi
# surround
if ! ble/lib/vim-surround.sh/surround "$text" "$ins" "$opts"; then
ble/widget/vi-command/bell
return 1
fi
local text=$ret
ble/widget/.replace-range "$beg" "$end" "$text"
fi
_ble_edit_ind=$beg
if [[ $context == line ]]; then
ble/widget/vi-command/first-non-space
else
ble/keymap:vi/adjust-command-mode
fi
ble/keymap:vi/mark/end-edit-area
ble/lib/vim-surround.sh/ysurround.repeat/record "$type" "$ins"
return 0
}
function ble/widget/vim-surround.sh/ysurround-current-line {
ble/widget/vi_nmap/linewise-operator yss
}
function ble/widget/vim-surround.sh/ySurround-current-line {
ble/widget/vi_nmap/linewise-operator ySS
}
function ble/widget/vim-surround.sh/vsurround { # vS
ble/widget/vi-command/operator vS
}
function ble/widget/vim-surround.sh/vgsurround { # vgS
[[ $_ble_decode_keymap == vi_xmap ]] &&
ble/keymap:vi/xmap/add-eol-extension # 末尾拡張
ble/widget/vi-command/operator vgS
}
# repeat (nmap .) 用の変数・関数
_ble_lib_vim_surround_ys_repeat=()
function ble/lib/vim-surround.sh/ysurround.repeat/entry {
local -a _ble_keymap_vi_repeat _ble_keymap_vi_repeat_irepeat
ble/keymap:vi/repeat/record-normal
_ble_lib_vim_surround_ys_repeat=("${_ble_keymap_vi_repeat[@]}")
}
function ble/lib/vim-surround.sh/ysurround.repeat/record {
ble/keymap:vi/repeat/record-special && return 0
local type=$1 ins=$2
_ble_keymap_vi_repeat=("${_ble_lib_vim_surround_ys_repeat[@]}")
_ble_keymap_vi_repeat_irepeat=()
_ble_keymap_vi_repeat[10]=$type
_ble_keymap_vi_repeat[11]=$ins
case $type in
(vS|vgS)
_ble_keymap_vi_repeat[2]='ble/widget/vi-command/operator ysurround.repeat'
_ble_keymap_vi_repeat[4]= ;;
(yss|ySS)
_ble_keymap_vi_repeat[2]='ble/widget/vi_nmap/linewise-operator ysurround.repeat'
_ble_keymap_vi_repeat[4]= ;;
(*)
_ble_keymap_vi_repeat[4]=ysurround.repeat
esac
}
function ble/keymap:vi/operator:ysurround.repeat {
_ble_lib_vim_surround_ys_type=${_ble_keymap_vi_repeat[10]}
_ble_lib_vim_surround_ys_args=("$@")
[[ $3 == block ]] && _ble_lib_vim_surround_ys_ranges=("${sub_ranges[@]}")
local ins=${_ble_keymap_vi_repeat[11]}
ble/widget/vim-surround.sh/ysurround.core "$ins"
}
#------------------------------------------------------------------------------
# ds cs
# 仕様: surround.vim の実装は杜撰なのでここで vim-surround.sh の独自仕様を定める。
#
# ds, cs は続いて /([0-9]+| )?./ の形式の引数を受け取る。
#
# /[0-9]+/ が指定された時は引数に対する倍率を表す。
#
# / / が指定された時は囲みの内側にある空白も削除することを表す。
#
# /./ として wW を指定したときは何も削除しない。
# c = b)B}r]a> を指定した時は text-object {arg}ic を残して {arg}ac を削除する。
# c = ({[< を指定した時は更に内側の空白も削除する。
# c = '"` を指定した場合には引数は無視する。ic を残して ac を削除する。
# それ以外の c = a-zA-Z は既定として text-object {arg}ic を残し {arg}ac を削除する。
# それ以外の文字に関しては行内で一致を検索する。
#
# 更に cs は続いて / ?./ の形式の引数を受け取る。
#
# / / が指定されたtときは左右内側に空白を 1 つずつ付加する。
#
# オリジナルの surround.vim とはところどころで振る舞いが異なる。
# 振る舞いの違いに関しては ble.sh/memo.txt #D0457 を参照のこと。
#
# ToDo: ds, cs において囲まれている対象に改行が含まれる場合、
# 置換を行った後に関係する行を == でインデントする。
# 現在、本体で = に対応していないのでこれも未対応である。
#
## @fn ble/keymap:vi/operator:surround
## @var[in] surround_content
## @var[in] surround_ins
## @var[in] surround_trim
## @var[in] surround_type
## ds cs cS の何れかの値
function ble/keymap:vi/operator:surround.record { return 0; }
function ble/keymap:vi/operator:surround {
local beg=$1 end=$2 context=$3
local content=$surround_content ins=$surround_ins trims=$surround_trim
local ret
if [[ $trims ]]; then
ble/string#trim "$content"; content=$ret
fi
local opts=; [[ $surround_type == cS ]] && opts=linewise
if ! ble/lib/vim-surround.sh/surround "$content" "$ins" "$opts"; then
ble/widget/vi-command/bell
return 0
fi
content=$ret
ble/widget/.replace-range "$beg" "$end" "$content"
# if [[ $has_nl ]]; then
# # ToDo: indent
# fi
return 0
}
## @fn ble/keymap:vi/operator:surround-extract-region
## 着色の為に範囲を抽出するオペレータ
## @var[out] surround_beg
## @var[out] surround_end
function ble/keymap:vi/operator:surround-extract-region {
surround_beg=$beg surround_end=$end
return 147 # 強制中断する為
}
## @arr _ble_lib_vim_surround_cs
## 処理途中の情報はここに記録する。
## 以下の要素は指定された引数を記録する。
##
## [0]=type
## ds | cs | cS
## [1]=arg
## [2]=reg
## [3]=del
##
## 以下の要素は引数から計算される途中の変数を保持する。
##
## [11]=del2
## [12]=obj1 [13]=obj2
## [14]=beg [15]=end
## [16]=arg2
## [17]=trim
##
_ble_lib_vim_surround_cs=()
function ble/widget/vim-surround.sh/nmap/csurround.initialize {
_ble_lib_vim_surround_cs=("${@:1:3}")
return 0
}
function ble/widget/vim-surround.sh/nmap/csurround.set-delimiter {
local type=${_ble_lib_vim_surround_cs[0]}
local arg=${_ble_lib_vim_surround_cs[1]}
local reg=${_ble_lib_vim_surround_cs[2]}
_ble_lib_vim_surround_cs[3]=$1
local trim=
[[ $del == ' '?* ]] && trim=1 del=${del:1}
if [[ $del == a ]]; then
del='>'
elif [[ $del == r ]]; then
del=']'
elif [[ $del == T ]]; then
del='t' trim=1
fi
local obj1= obj2=
case $del in
([wWps]) obj1=i$del obj2=i$del ;;
([\'\"\`]) obj1=i$del obj2=a$del arg=1 ;;
(['bB)}>]t']) obj1=i$del obj2=a$del ;;
(['({<[']) obj1=i$del obj2=a$del trim=1 ;;
([a-zA-Z]) obj1=i$del obj2=a$del ;;
esac
local beg end
if [[ $obj1 && $obj2 ]]; then
# テキストオブジェクトによって指定される範囲
local surround_beg=$_ble_edit_ind surround_end=$_ble_edit_ind
ble/keymap:vi/text-object.impl "$arg" surround-extract-region '' "$obj2"
beg=$surround_beg end=$surround_end
elif [[ $del == / ]]; then
# /* .. */ で囲まれた部分
local rex='(/\*([^/]|/[^*])*/?){1,'$arg'}$'
[[ ${_ble_edit_str::_ble_edit_ind+2} =~ $rex ]] || return 1
beg=$((_ble_edit_ind+2-${#BASH_REMATCH}))
ble/string#index-of "${_ble_edit_str:beg+2}" '*/' || return 1
end=$((beg+ret+4))
elif [[ $del ]]; then
# 指定した文字で囲まれた部分
local ret
ble-edit/content/find-logical-bol; local bol=$ret
ble-edit/content/find-logical-eol; local eol=$ret
local line=${_ble_edit_str:bol:eol-bol}
local ind=$((_ble_edit_ind-bol))
# beg
if ble/string#last-index-of "${line::ind}" "$del"; then
beg=$ret
elif local base=$((ind-(2*${#del}-1))); ((base>=0||(base=0)))
ble/string#index-of "${line:base:ind+${#del}-base}" "$del"; then
beg=$((base+ret))
else
return 1
fi
# end
ble/string#index-of "${line:beg+${#del}}" "$del" || return 1
end=$((beg+2*${#del}+ret))
((beg+=bol,end+=bol))
fi
_ble_lib_vim_surround_cs[11]=$del
_ble_lib_vim_surround_cs[12]=$obj1
_ble_lib_vim_surround_cs[13]=$obj2
_ble_lib_vim_surround_cs[14]=$beg
_ble_lib_vim_surround_cs[15]=$end
_ble_lib_vim_surround_cs[16]=$arg
_ble_lib_vim_surround_cs[17]=$trim
}
function ble/widget/vim-surround.sh/nmap/csurround.replace {
local ins=$1
local type=${_ble_lib_vim_surround_cs[0]}
local arg=${_ble_lib_vim_surround_cs[1]}
local reg=${_ble_lib_vim_surround_cs[2]}
local del=${_ble_lib_vim_surround_cs[3]}
local del2=${_ble_lib_vim_surround_cs[11]}
local obj1=${_ble_lib_vim_surround_cs[12]}
local obj2=${_ble_lib_vim_surround_cs[13]}
local beg=${_ble_lib_vim_surround_cs[14]}
local end=${_ble_lib_vim_surround_cs[15]}
local arg2=${_ble_lib_vim_surround_cs[16]}
local surround_ins=$ins
local surround_type=$type
local surround_trim=${_ble_lib_vim_surround_cs[17]}
if [[ $obj1 && $obj2 ]]; then
# テキストオブジェクトによって指定される範囲
local ind=$_ble_edit_ind
local _ble_edit_kill_ring _ble_edit_kill_type
ble/keymap:vi/text-object.impl "$arg2" y '' "$obj1"; local ext=$?
_ble_edit_ind=$ind
((ext!=0)) && return 1
local surround_content=$_ble_edit_kill_ring
ble/keymap:vi/text-object.impl "$arg2" surround '' "$obj2" || return 1
elif [[ $del2 == / ]]; then
# /* .. */ で囲まれた部分
local surround_content=${_ble_edit_str:beg+2:end-beg-4}
ble/keymap:vi/call-operator surround "$beg" "$end" char '' ''
_ble_edit_ind=$beg
elif [[ $del2 ]]; then
# 指定した文字で囲まれた部分
local surround_content=${_ble_edit_str:beg+${#del2}:end-beg-2*${#del2}}
ble/keymap:vi/call-operator surround "$beg" "$end" char '' ''
_ble_edit_ind=$beg
else
ble/widget/vi-command/bell
return 1
fi
ble/widget/vim-surround.sh/nmap/csurround.record "$type" "$arg" "$reg" "$del" "$ins"
ble/keymap:vi/adjust-command-mode
return 0
}
#---- repeat ----
## @fn ble/widget/vim-surround.sh/nmap/csurround.record
function ble/widget/vim-surround.sh/nmap/csurround.record {
# Note: ble/keymap:vi/repeat/record の実装に合わせた条件判定。
[[ $_ble_keymap_vi_mark_suppress_edit ]] && return 0
local type=$1 arg=$2 reg=$3 del=$4 ins=$5
local WIDGET=ble/widget/vim-surround.sh/nmap/csurround.repeat ARG=$arg FLAG= REG=$reg
ble/keymap:vi/repeat/record
if [[ $_ble_decode_keymap == vi_imap ]]; then
# Note: ble/keymap:vi/repeat/record の実装に合わせた条件判定。
# この実装では vi_imap で呼び出される事はない筈だが念の為。
# ble/keymap:vi/repeat/record は keymap が vi_imap の時は異なる場所に記録する。
_ble_keymap_vi_repeat_insert[10]=$type
_ble_keymap_vi_repeat_insert[11]=$del
_ble_keymap_vi_repeat_insert[12]=$ins
else
_ble_keymap_vi_repeat[10]=$type
_ble_keymap_vi_repeat[11]=$del
_ble_keymap_vi_repeat[12]=$ins
fi
}
function ble/widget/vim-surround.sh/nmap/csurround.repeat {
local ARG FLAG REG; ble/keymap:vi/get-arg 1
local type=${_ble_keymap_vi_repeat[10]}
local del=${_ble_keymap_vi_repeat[11]}
local ins=${_ble_keymap_vi_repeat[12]}
ble/widget/vim-surround.sh/nmap/csurround.initialize "$type" "$ARG" "$REG" &&
ble/widget/vim-surround.sh/nmap/csurround.set-delimiter "$del" &&
ble/widget/vim-surround.sh/nmap/csurround.replace "$ins" && return 0
ble/widget/vi-command/bell
return 1
}
#---- ds ----
function ble/widget/vim-surround.sh/nmap/dsurround {
local ARG FLAG REG; ble/keymap:vi/get-arg 1
ble/widget/vim-surround.sh/nmap/csurround.initialize ds "$ARG" "$REG"
ble/lib/vim-surround.sh/async-inputtarget ble/widget/vim-surround.sh/nmap/dsurround.hook
}
function ble/widget/vim-surround.sh/nmap/dsurround.hook {
local del=$1
ble/widget/vim-surround.sh/nmap/csurround.set-delimiter "$del" &&
ble/widget/vim-surround.sh/nmap/csurround.replace '' && return 0
ble/widget/vi-command/bell
return 1
}
#---- cs ----
## @fn ble/highlight/layer:region/mark:vi_surround/get-selection
## 入力待ち状態の時の領域着色を定義します。
## @arr[out] selection
function ble/highlight/layer:region/mark:vi_csurround/get-selection {
local beg=${_ble_lib_vim_surround_cs[14]}
local end=${_ble_lib_vim_surround_cs[15]}
selection=("$beg" "$end")
}
function ble/highlight/layer:region/mark:vi_csurround/get-face {
face=region_target
}
function ble/widget/vim-surround.sh/nmap/csurround {
ble/widget/vim-surround.sh/nmap/csurround.impl cs
}
function ble/widget/vim-surround.sh/nmap/cSurround {
ble/widget/vim-surround.sh/nmap/csurround.impl cS
}
function ble/widget/vim-surround.sh/nmap/csurround.impl {
local ARG FLAG REG; ble/keymap:vi/get-arg 1
local type=$1
ble/widget/vim-surround.sh/nmap/csurround.initialize "$type" "$ARG" "$REG"
ble/lib/vim-surround.sh/async-inputtarget ble/widget/vim-surround.sh/nmap/csurround.hook1
}
function ble/widget/vim-surround.sh/nmap/csurround.hook1 {
local del=$1
if [[ $del ]] && ble/widget/vim-surround.sh/nmap/csurround.set-delimiter "$del"; then
_ble_edit_mark_active=vi_csurround
ble/lib/vim-surround.sh/async-inputtarget-noarg ble/widget/vim-surround.sh/nmap/csurround.hook2
return "$?"
fi
_ble_lib_vim_surround_cs=()
ble/widget/vi-command/bell
return 1
}
function ble/widget/vim-surround.sh/nmap/csurround.hook2 {
local ins=$1
if local rex='^ ?[<tT]$'; [[ $ins =~ $rex ]]; then
ble/lib/vim-surround.sh/async-read-tagname "ble/widget/vim-surround.sh/nmap/csurround.hook3 '$ins'"
else
ble/widget/vim-surround.sh/nmap/csurround.hook3 "$ins"
fi
}
## @fn ble/widget/vim-surround.sh/nmap/csurround.hook3 ins [tagName]
function ble/widget/vim-surround.sh/nmap/csurround.hook3 {
local ins=$1 tagName=$2
_ble_edit_mark_active= # clear mark:vi_csurround
ble/widget/vim-surround.sh/nmap/csurround.replace "$ins$tagName" && return 0
ble/widget/vi-command/bell
return 1
}
#------------------------------------------------------------------------------
function ble/widget/vim-surround.sh/omap {
local ret n=${#KEYS[@]}
if ! ble/keymap:vi/k2c "${KEYS[n?n-1:0]}"; then
ble/widget/.bell
return 1
fi
ble/util/c2s "$ret"; local s=$ret
local opfunc=${_ble_keymap_vi_opfunc%%:*}$s
local opflags=${_ble_keymap_vi_opfunc#*:}
case $opfunc in
(y[sS])
local ARG FLAG REG; ble/keymap:vi/get-arg 1
_ble_edit_arg=$ARG
_ble_keymap_vi_reg=$REG
ble/decode/keymap/pop
ble/widget/vi-command/operator "$opfunc:$opflags" ;;
(yss)
ble/widget/vi_nmap/linewise-operator "yss:$opflags" ;;
(yS[sS])
ble/widget/vi_nmap/linewise-operator "ySS:$opflags" ;;
(ds) ble/widget/vim-surround.sh/nmap/dsurround ;;
(cs) ble/widget/vim-surround.sh/nmap/csurround ;;
(cS) ble/widget/vim-surround.sh/nmap/cSurround ;;
(*) ble/widget/.bell ;;
esac
}
ble-bind -m vi_xmap -f 'S' vim-surround.sh/vsurround
ble-bind -m vi_xmap -f 'g S' vim-surround.sh/vgsurround
if [[ $bleopt_vim_surround_omap_bind ]]; then
ble-bind -m vi_omap -f s 'vim-surround.sh/omap'
ble-bind -m vi_omap -f S 'vim-surround.sh/omap'
else
ble-bind -m vi_nmap -f 'y s' 'vi-command/operator ys'
ble-bind -m vi_nmap -f 'y s s' 'vim-surround.sh/ysurround-current-line'
ble-bind -m vi_nmap -f 'y S' 'vi-command/operator yS'
ble-bind -m vi_nmap -f 'y S s' 'vim-surround.sh/ySurround-current-line'
ble-bind -m vi_nmap -f 'y S S' 'vim-surround.sh/ySurround-current-line'
ble-bind -m vi_nmap -f 'd s' 'vim-surround.sh/nmap/dsurround'
ble-bind -m vi_nmap -f 'c s' 'vim-surround.sh/nmap/csurround'
ble-bind -m vi_nmap -f 'c S' 'vim-surround.sh/nmap/cSurround'
fi
|