Forum Replies Created
- AuthorPosts
- Yutaka Emura Keymaster- user wrote: 
 hello- can you tell me please how to: - 1) select all lines containing a string 
 2) select all lines NOT containing a string- thanks - Did you try these macros? - http://www.emeditor.com/modules/mydownloads/singlefile.php?cid=8&lid=170 
 http://www.emeditor.com/modules/mydownloads/singlefile.php?cid=8&lid=169- Yutaka Emura Keymaster- I changed b to strong and i to em on beta 3. Thanks! - Yutaka Emura Keymaster- Version 7 allows you to convert/replace within box selection. You can now replace something within box selection. Please let me know your specific needs if this still does not work for you. - Yutaka Emura Keymaster- I understand the issue, but it might take a while before I can fix this issue including data structure changes, which might also cause incompatibilities with the existing plug-ins. Please let me think about it if I can fix this before version 7 release. Thanks! - Yutaka Emura Keymaster- I fixed most of relative/absolute path issues on beta 3. Please give a try! - Yutaka Emura Keymaster- I hope I fixed this issue on beta 3. - Yutaka Emura Keymaster- I fixed this issue on beta 3. I hope this does not cause any other issues… - Yutaka Emura Keymaster- I am not sure if this is related, but I fixed the related issue. Please see if Beta 3 resolves this issue. Thanks! - Yutaka Emura Keymaster- I cannot reproduce this problem. It looks like Windows system issue. You might want to reboot Windows if the issue still appears. - Yutaka Emura Keymaster- EUC-KR should be already there. Can you find the other in Tools menu -> Define Encodings? - Yutaka Emura Keymaster- I didn’t have a time to fix the absolute/relative path issue before beta 2. I will certainly try to fix this issue by the release version. Thanks! August 10, 2007 at 3:26 am in reply to: EmEditor Professional 7.00 beta 1 (through August 14, 2007) #4525- Yutaka Emura Keymaster- I also downloaded a portable version , select a line by triple-click works there, i think i know how to operate the triple-click 
 it indeed failed in my direct-updated version:(- I guess it was not installed correctly. Please reboot your computer and try again. - Yutaka Emura Keymaster- “Wscript” is not included in the Highlight list, so it will not be displayed unless “wscript” is used in the document. Those words with blue symbols are from the current document while those with pink symbols are from the Highlight list. - Yutaka Emura Keymaster- I believe it is a bug. I will try to fix that. Thanks! - Yutaka Emura Keymaster- I reproduced this issue. I will certainly fix that. Thanks! - Yutaka Emura Keymaster- I noticed this bug while I was releasing beta 1, but I didn’t have a time to fix this. I will take a look at this soon. August 9, 2007 at 5:41 pm in reply to: EmEditor Professional 7.00 beta 1 (through August 14, 2007) #4515- Yutaka Emura Keymaster- seems that the Project name can not be changed in Projects Plugin… 
 hope emeditor to be better and better, it’s my favorite- Did you try “Save Project As” in the context menu? August 9, 2007 at 5:39 pm in reply to: EmEditor Professional 7.00 beta 1 (through August 14, 2007) #4514- Yutaka Emura Keymaster- Is there any chance that a column editing mode will be available? It’s the feature I’m missing most … - The column editing, or “Box Selection” is already there. You can select a box selection by mouse while pressing ALT, or by pressing CTRL + SHIFT + F8 to start selecting in box selection mode. August 9, 2007 at 5:37 pm in reply to: EmEditor Professional 7.00 beta 1 (through August 14, 2007) #4513- Yutaka Emura Keymaster- I updated emeditor in my computer from 6 to 7 directly, i found a issue that : “Triple-clicking now selects a whole line.” does not work, need i do some special configure? - one more issue: seems that “Replace all” only works for use regular exp… - I cannot reproduce your issue with triple-clicking. Where do you triple-click? Please describe more in details. - I will take a look at Replace All command. August 9, 2007 at 5:34 pm in reply to: EmEditor Professional 7.00 beta 1 (through August 14, 2007) #4512- Yutaka Emura Keymaster- Two questions: 
 1. How i may export settings from installed version to portable?
 2. How i may create / organize ìó favorite files?- 1. Select Import/Export on the Tools menu, and select “Setup a removable drive such as a USB drive and export all settings into INI files.” - 2. You might want to use Projects plug-in included in Version 7. August 7, 2007 at 11:42 pm in reply to: EmEditor Professional 7.00 beta 1 (through August 14, 2007) #4498- Yutaka Emura Keymaster- I will add a message for prolonged process. Thanks! - Yutaka Emura Keymaster- It will be announced in the beta forum: http://www.emeditor.com/modules/newbb/viewforum.php?forum=12 - Yutaka Emura Keymaster- I will probably release the beta 1 version tomorrow. :-) - Yutaka Emura Keymaster- You can use JavaScript macros: - Move Up: 
 editor.ExecuteCommandByID(4193);
 editor.ExecuteCommandByID(4269);
 document.selection.Paste(eeCopyUnicode);
 editor.ExecuteCommandByID(4269);
 - Move Down: 
 editor.ExecuteCommandByID(4193);
 editor.ExecuteCommandByID(4268);
 document.selection.Paste(eeCopyUnicode);
 editor.ExecuteCommandByID(4269);
 - and you can assign these macros to any key shortcuts. - Yutaka Emura Keymaster- You can use the following macro (JavaScript): 
 if( document.selection.IsEmpty ){
 editor.ExecuteCommandByID(4192);
 }
 else {
 document.selection.Copy(eeCopyUnicode);
 }
 - and you can assign this macro as CTRL+INS and CTRL+C. 
- AuthorPosts