Forum Replies Created
- AuthorPosts
Yutaka Emura
KeymasterI reproduced this issue. I will certainly fix that. Thanks!
Yutaka Emura
KeymasterI 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) #4515Yutaka Emura
Keymasterseems that the Project name can not be changed in Projects Plugin…
hope emeditor to be better and better, it’s my favoriteDid 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) #4514Yutaka Emura
KeymasterIs 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) #4513Yutaka Emura
KeymasterI 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) #4512Yutaka Emura
KeymasterTwo 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) #4498Yutaka Emura
KeymasterI will add a message for prolonged process. Thanks!
Yutaka Emura
KeymasterIt will be announced in the beta forum: http://www.emeditor.com/modules/newbb/viewforum.php?forum=12
Yutaka Emura
KeymasterI will probably release the beta 1 version tomorrow. :-)
Yutaka Emura
KeymasterYou 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
KeymasterYou 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.
Yutaka Emura
KeymasterI can probably release beta versions in a few weeks. I apologize if the term “soon” was not specific enough and confusing. I can only say that the new version will be released when it becomes stable enough. I don’t want to release versions that might contain too many bugs. I work very hard, day and night, to finalize Version 7. I committed to make it one of the greatest updates in the EmEditor history! Thank you very much for your support!
Yutaka Emura
KeymasterIt will be included in Version 7. :-)
Yutaka Emura
KeymasterIt is under the Tools menu > Customize. It is available on EmEditor Professional or Standard, but not on EmEditor Free.
Yutaka Emura
Keymaster1. There is “EmEditor” menu in the Explorer context menu. If not, make sure “Add a shortcut to the Context Menu on Explorer” is checked in the Customize dialog > Shortcut tab > More Shortcuts button.
2. I will soon release the Projects plug-in, so you can add your favorite files to a tree!
Yutaka Emura
KeymasterDid you try “$(Path)” ? Use double quotation marks “” to surround $(Path).
June 18, 2007 at 11:25 pm in reply to: how to change the default browser opened by emeditor when clicking a link? #4433Yutaka Emura
KeymasterYou might want to go to Explorer > Tools menu > Folder Options > File Types tab and look for “(NONE) URL:HyperText Transfer Protocol”. I don’t recommend you change this setting manually, but I think this is what EmEditor (and other applications) typically uses to select a browser to open URLs with. I receive many claims with the similar FireFox issues. Do you use the latest version of FireFox installed properly on your system?
Yutaka Emura
KeymasterYou will need to use “^\” instead of “^”. Regular Expressions expects , and JavaScript also escapes backslashes, so it needs to be \. If this does not solve your other questions, please let me know. Thanks.
Yutaka Emura
KeymasterCurrently, you cannot change this behavior. You will need to move the mouse to the left to include $ while pressing the mouse button.
June 17, 2007 at 11:41 pm in reply to: how to change the default browser opened by emeditor when clicking a link? #4429Yutaka Emura
KeymasterYou can change the default browser from the Windows Start menu > Set Program Access and Defaults.
Yutaka Emura
KeymasterNot a bug. You must escape back slash as “” in JavaScript.
Yutaka Emura
KeymasterAs I replied to the other thread, The next version (7) will improve how EmEditor displays text and prevent this flickering issue.
Yutaka Emura
KeymasterThis is correct behavior by design. You will explicitly need to specify the new encoding, or you can select “File” > “Reload” > “Detect All” or any other encoding.
Yutaka Emura
KeymasterYou or I could write a macro to find a matching tag — for instance, if the cursor is on “<table", then the macro should find "</table", and go to that position. Is this something you would like to do?
May 23, 2007 at 8:53 pm in reply to: Macro to insert specified text on specified line of multiple files. #4380Yutaka Emura
KeymasterI am not completely sure what you want to do. Do you want to add “PUNCH5” at Line 278 of every file in a certain folder?
- AuthorPosts