Created
July 21, 2012 11:39
-
-
Save kamatamadai/3155581 to your computer and use it in GitHub Desktop.
文字列 挿入マクロ(秀丸エディタ用)
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; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment