Viewing 2 posts - 1 through 2 (of 2 total) Author Posts November 3, 2006 at 2:08 am #3958 kinghooMember In PL/SQL Developer, you can use Special Copy to copy some text into your codes. For example,u can copy select * from abc as Java Code: “Select * Fromn” + “abc”; or as Delphi: ‘Select * From’ + #13#10 + ‘abc’; In EmEditor, you can use Copy in Quotes, but it can only add quotes in front of line,not like above.I think it is useful for programmars. November 3, 2006 at 7:11 am #3960 Yutaka EmuraKeymaster I don’t want to make it a core feature because of my principle — avoid bloated feature set —. However, I created a macro for you. Although it is not perfect, you can do the rest of work to make it perfect for you. This is for Java. str = clipboardData.getData("Text"); str = """ + str.replace(/rn/mg,"n" +rn"") + "";"; document.write( str ); Author Posts Viewing 2 posts - 1 through 2 (of 2 total) The forum ‘EmEditor Core Enhancement Suggestions’ is closed to new topics and replies.