Skip to content

Instantly share code, notes, and snippets.

View kamatamadai's full-sized avatar

kamatamadai kamatamadai

View GitHub Profile
@kamatamadai
kamatamadai / 文字列 挿入マクロ(秀丸エディタ用)
Created July 21, 2012 11:39
文字列 挿入マクロ(秀丸エディタ用)
// 文字列 挿入マクロ(秀丸エディタ用)
// 選択範囲の行頭に入力された文字列を挿入する
#cnt = selendy - seltopy;
$wrk = input("挿入する文字列を入力してください","");
while( #cnt > 0 )
{
replacedown "^", $wrk, regular, inselect;
#cnt = #cnt - 1;
}
endmacro;