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
// 文字列 挿入マクロ(秀丸エディタ用) | |
// 選択範囲の行頭に入力された文字列を挿入する | |
#cnt = selendy - seltopy; | |
$wrk = input("挿入する文字列を入力してください",""); | |
while( #cnt > 0 ) | |
{ | |
replacedown "^", $wrk, regular, inselect; | |
#cnt = #cnt - 1; | |
} | |
endmacro; |