Forum Replies Created
- AuthorPosts
Yutaka Emura
KeymasterHello,
First, click ALT + F, and then you can click any number that corresponding to the recent file that you want to open.
To access the More sub menu, you will have to click . (period) after ALT + F.Yutaka Emura
KeymasterHello,
This is not a bug. The numbers are for keyboard shortcuts.
Also, you can choose how you want to show the shortcuts on the Extra Keyboard Shortcuts drop-down list in the History tab of the Customize dialog box.
Thanks!
October 7, 2015 at 8:32 am in reply to: Option to adjust the Date/Time format (Edit > Insert > Time and Date) #20371Yutaka Emura
KeymasterHello Stefan,
There are two commands: Date and Time, Time and Date. You can find both in the Quick Launch window (CTRL + Q).
Thanks!October 6, 2015 at 2:57 pm in reply to: see line above matching parenthesisb/bracket when jumping from down to up #20369Yutaka Emura
KeymasterHello npnilsson,
Thanks for email. This is addressed by setting the new Always Show 1 Line above/below Cursor check box on the Scroll tab of configuration properties on v15.4.0 beta 2:
https://www.emeditor.com/forums/topic/emeditor-v15-4-0-beta-2/
Thanks!
October 6, 2015 at 2:55 pm in reply to: Option to adjust the Date/Time format (Edit > Insert > Time and Date) #20368Yutaka Emura
KeymasterHello Stefan,
You can now set date/time formats on v15.4.0 beta 2:
https://www.emeditor.com/forums/topic/emeditor-v15-4-0-beta-2/
Thanks!
Yutaka Emura
KeymasterHello suntoucher,
I reproduced the issue, and the search will be as fast as before.
Thanks for bringing up the issue!
September 10, 2015 at 2:27 pm in reply to: Failing to Upgrade to 15.3 Due to Error "The File Was Corrupt" #20339Yutaka Emura
KeymasterI am not sure why this happens. Please erasing all cache in your browser, delete all temporary files, and download from our download website at:
https://www.emeditor.com/download/
Thank you,
August 20, 2015 at 11:03 am in reply to: Option to adjust the Date/Time format (Edit > Insert > Time and Date) #20321Yutaka Emura
KeymasterYou can use a JavaScript macro to insert date/time by any format. For example:
var date = new Date(); var hour = date.getHours(); var hh = hour; if( hour < 10 ) hh = "0" + hour; var min = date.getMinutes(); var mm = min; if( min < 10 ) mm = "0" + min; var sec = date.getSeconds(); var ss = sec; if( sec < 10 ) ss = "0" + sec; var monthNames = [ "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" ]; var day = date.getDate(); var monthIndex = date.getMonth(); var year = date.getFullYear(); document.write( hh + ":" + mm + ":" + ss + ", " + day + " " + monthNames[monthIndex] + ", " + year);
I am trying to prioritize features that can’t be done by using macros higher than others, which allows EmEditor keep lightweight.
August 20, 2015 at 10:39 am in reply to: see line above matching parenthesisb/bracket when jumping from down to up #20320Yutaka Emura
KeymasterI am not exactly sure what you want. Do you want the code between parenthesis/brackets displayed as a tooltip?
Can you please draw an image like a screenshot, and send it to me (tech @ Emurasoft.com)?Thanks,
August 17, 2015 at 4:00 pm in reply to: move cursor to insert position when moving cursor vertically after paste #20314Yutaka Emura
KeymasterThis feature is now available on v15.3.0 beta 1:
https://www.emeditor.com/emeditor-core/emeditor-v15-3-0-beta-1/
Thanks!
August 9, 2015 at 12:55 pm in reply to: move cursor to insert position when moving cursor vertically after paste #20297Yutaka Emura
KeymasterI will add this feature as an option on the next version. What is the best name for this feature (as a check box label)? “Constrain the Cursor to the Text” sounds a little weird to me. Any idea?
Yutaka Emura
KeymasterHello,
You can assign “Next Cell” and “Previous Cell” commands to your favorite shortcut keys.
Thanks!Yutaka Emura
KeymasterHello,
If the Adjust Separator Positions Automatically is checked, EmEditor will adjust the column size automaticaly when EmEditor opens a CSV file, or when you reorder columns, insert or delete text. If not, EmEditor will not adjust columns automatically.
Thanks,
Yutaka Emura
KeymasterHello,
The current workspace feature can save the cursor positions, but not selections. We might consider this in future versions.
Thanks,
Yutaka Emura
KeymasterHello,
You cannot have two versions coexist at the same time. Please use a portable version if you want to try in a different folder.
Thanks!
Yutaka Emura
KeymasterYou can set the “Save Options” check box at the end of the wizard. Thanks!
Yutaka Emura
KeymasterYes, as you can see, there is a limitation of 259 characters long for the header text field. You can use the $(FirstLine) parameter to avoid this limitation, or check the “Repeat the first line as header” check box as described above.
Thanks!
Yutaka Emura
KeymasterHello,
I am not sure exactly what your question is. However, in the new beta version, the “Repeat the first line as header” check box was added to the “Header and footer” page of the “Split Current Document into Several Files” wizard.
If you still use the old stable version, you might want to add “\r\n” to the end of the header you specify, which will add the newline.
Thanks!
July 10, 2015 at 3:18 pm in reply to: use of escaping in strings when using regex and command line find and replace #20227Yutaka Emura
KeymasterHello,
I don’t recommend using command line options to do replace. Please use a macro to do the replace.
Thanks!
July 7, 2015 at 11:38 am in reply to: Dont show "Create Text File" in context menu in EmEditor 15.1.0 #20222Yutaka Emura
KeymasterUsing the Registry Editor, locate HKEY_CLASSES_ROOT\emeditor64.txt
In this key, can you find FriendlyTypeName value? If not, you can create this value (String Value) as:Value name:
FriendlyTypeName
Value data:
Текстовый документ
I hope this helps.
July 6, 2015 at 1:24 pm in reply to: Dont show "Create Text File" in context menu in EmEditor 15.1.0 #20220Yutaka Emura
KeymasterThis has been fixed on v15.1.6. Sorry for the delay.
Thank you!Yutaka Emura
KeymasterHello,
You can add leading zeros in the First Line text box in the Numbering dialog box.
For example, if you want to add 001, 002, 003, …, then you would specify “001” in the First Line text box.Thanks!
June 19, 2015 at 12:31 pm in reply to: Dont show "Create Text File" in context menu in EmEditor 15.1.0 #20199Yutaka Emura
KeymasterPlease create the key ShellNew and also create NullFile value as described before.
June 19, 2015 at 10:40 am in reply to: Dont show "Create Text File" in context menu in EmEditor 15.1.0 #20197Yutaka Emura
KeymasterUsing the Registry Editor (regedit.exe), locate to HKEY_CLASSES_ROOT\.txt and if you don’t see a key:
HKEY_CLASSES_ROOT\.txt\ShellNew
craete this key above.
Then create a string value called “NullFile” under the ShellNew key and assign an empty string.
HKEY_CLASSES_ROOT\.txt\ShellNew NullFile REG_SZ (empty)
Thank you,
Yutaka Emura
KeymasterHello,
You should be able to use Python as a macro language for EmEditor.
Please refer to:
http://www.emeditor.com/help/macro/directive/language.htm
and let me know if you still have any questions.
Thank you,
- AuthorPosts