Viewing 2 posts - 1 through 2 (of 2 total)
- AuthorPosts
- November 3, 2006 at 2:08 am #3958kinghooMember
In PL/SQL Developer, you can use Special Copy to copy some text into your codes.
For example,u can copy
select * from
abcas 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 #3960Yutaka EmuraKeymasterI 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 );
- AuthorPosts
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.