#8023
h-shinya
参加者

とりあえず、以下の様にリファレンスを見ながら、マクロを作ってみました。
論理行の一行単位で文字列変更後の上書き保存を行うものです。
保存時に保存ダイアログが出ますので、自動ではありません。
——————-
nFound = document.selection.Find(“: “, eeFindNext)
document.selection.CharRight ,1
document.selection.EndOfLine true,eeLineLogical
document.selection.Copy eeCopyUnicode
editor.ExecuteCommandByID 4147
document.selection.EndOfLine true,eeLineLogical
document.selection.Paste eeCopyUnicode
document.Save
document.close
editor.ExecuteCommandByID 4268
——————-