選択範囲にトリプルバッククオートで囲む
// 範囲選択中でない場合、マクロを終了する
if (selecting == 0) endmacro;
// 選択範囲の文字列を取得(範囲選択を維持する)
$str = gettext(seltopx,seltopy,selendx,selendy, 1);
// 前後に「」を付加
$str = "`" + $str + "`";
// insert
insert $str;
// 範囲選択中でない場合、マクロを終了する
if (selecting == 0) endmacro;
// 選択範囲の文字列を取得(範囲選択を維持する)
$str = gettext(seltopx,seltopy,selendx,selendy, 1);
// 前後に「」を付加
$str = "`" + $str + "`";
// insert
insert $str;