Forum Replies Created
- AuthorPosts
- November 9, 2015 at 2:54 pm in reply to: Block of Text Search and Replace Functionality Missing #20471
Yutaka Emura
KeymasterHello ArthurZ,
I am not exactly sure what you would like to do, but it sounds like macros (JavaScript or VBScript) should work for this purpose.
Thank you!
Yutaka Emura
KeymasterHello,
Thanks for bug reports. I already fixed the Quick Launch issue. The next beta release will include this fix.
Since I am making major internal changes, it will take some time before I can release the next beta version.Thank you!
Yutaka Emura
KeymasterToday, we are releasing EmEditor v15.6.0 beta 2.
Notes: In order to update automatically to future beta versions, please select Select Update Channel on the Help menu, and select Betas.
Updates from v15.6.0 beta 1 include:
New General Features
- If the beta channel is selected, EmEditor will check updates always regardless of frequency settings.
- The Quick Launch window can be opened as a modeless window. The toolbar in the Quick Launch window includes “Keep This Window Open” button instead of the “Close” button.
- Right-click context menu in the Quick Launch window while a string with ‘@’ is entered.
To Download
http://files.emeditor.com/beta/emed64_15.5.902.exe (64-bit installer)
http://files.emeditor.com/beta/emed32_15.5.902.exe (32-bit installer)
http://files.emeditor.com/beta/emed64_15.5.902_portable.zip (64-bit portable)
http://files.emeditor.com/beta/emed32_15.5.902_portable.zip (32-bit portable)These files will be deleted when official release versions become available. The official releases can be downloaded at the Download page.
Thank you for continue using EmEditor!
October 31, 2015 at 9:52 am in reply to: "Tools > Quick Launch" and eeCommon.ini > KeymapSearchHist #20451Yutaka Emura
KeymasterThe search histories in the Quick Launch window before you upgrade to v15.5.1 will not be restored. However, you should be able to add new search terms.
The portable versions are not designed for speed. That is why you should use the installer version.
Thanks,
October 29, 2015 at 10:25 am in reply to: "Tools > Quick Launch" and eeCommon.ini > KeymapSearchHist #20445Yutaka Emura
KeymasterHello Stefan,
I reproduce this issue, and it will be fixed on the next version.
Thank you!
Yutaka Emura
KeymasterHello,
The Start window shouldn’t appear when you use “New and Paste” and similar commands. I will disable the Start window in this case.
Thank you!
October 26, 2015 at 12:21 pm in reply to: Automatically Name Untitled Docu: Pls, Increase taken string length to 99 chars. #20421Yutaka Emura
KeymasterHello Stefan,
The next version v15.5.0 will be released soon, and it will include a registry value. Also, the default value becomes 80 (it was 40 in older versions).
The following REG_DWORD values can be set in the HKEY_CURRENT_USER\SOFTWARE\EmSoft\EmEditor v3\Common key to set the maximum length for the file name when the Automatically Name Untitled Document check box is checked in the Save Details dialog box.
MaxNameUntitled: the maximum length for the file name including the terminating NULL character. Default: 0x50 (80)
Thank you,
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!
- AuthorPosts