Forum Replies Created
- AuthorPosts
- October 5, 2006 at 4:03 pm in reply to: Please allow selecting multiple files in the File Open dialog #3864
Yutaka Emura
KeymasterI will consider that. Thanks!
October 5, 2006 at 3:14 pm in reply to: Comment / Uncomment current line without selecting text? #3863Yutaka Emura
KeymasterIt is a specification that text must be selected before you can select each command in Convert Selection sub menu. However, it is possible to make it an option if many users like that way.
Yutaka Emura
KeymasterThanks for a good idea! It might be possible by writing a plug-in.
Yutaka Emura
KeymasterI will try to add a feature of just that. Thanks for your opinions.
October 4, 2006 at 4:03 pm in reply to: Disappeared: Save as encoding Central european(DOS) – CP852 #3856Yutaka Emura
KeymasterYou can add Save As (encoding) to the main menu by selecting Customize Menus on the Tools menu, and then select File category – List of Encodings to Save.
Yutaka Emura
KeymasterI perfectly understand what you mean, and I know some text editors allow you to do just that. I will consider that in future. Thanks! :-)
Yutaka Emura
KeymasterThis is one of frequently asked features, and I consider that seriously. Thanks!
p.s. Please don’t post the same message in different forums.
Yutaka Emura
KeymasterThis is one of frequently asked features, and I consider that seriously. Thanks!
Yutaka Emura
KeymasterI understand your requests. Thanks for your opinions.
Yutaka Emura
KeymasterDid you try:
Text Properties > File tab > Saving button > Always Enable Saving?
I hope this will solve your issue. :-)
Yutaka Emura
KeymasterThat isn’t very easy, but I will consider that. What do you want to do by double-clicking the text?
Yutaka Emura
KeymasterIt isn’t easy to do with regular expressions, but how about a macro like this (JavaScript):
// Create an array
a = new Array();
// Fill the array a with all lines (with returns) in the document.
document.selection.StartOfDocument();
for( ; ; ){
y = document.selection.GetActivePointY( eePosLogical );
document.selection.SelectLine();
sLine = document.selection.Text;
if( sLine == "" ) { // Reached the end of document, escape from the loop
break;
}
a.push( sLine );
document.selection.Collapse();
if( document.selection.GetActivePointY( eePosLogical ) == y ) {
// Reached the end of document (the last line without return), escape from the loop
break;
}
}
// Delete duplicate elements.
for( i = 0; i < a.length; i++ ){
sLine = a[i];
for( j = i + 1; j < a.length; j++ ){
if( sLine == a[j] ){
a.splice( j, 1 );
j--;
}
}
}
// Replace the entire document with new elements
document.selection.SelectAll();
document.selection.Text = a.join( "" );
Please let me know if you have questions. :-)
- AuthorPosts