Forum Replies Created

Viewing 25 posts - 1,201 through 1,225 (of 3,662 total)
  • Author
    Posts
  • in reply to: Did anybody have the similar problem? #20008
    Yutaka Emura
    Keymaster

    There are 3 kinds of return types, also called newline codes: CR only, LF only and CR+LF. You file contains mixture of these types. You can distinguish these by settings the “Show CR and LF with different marks” check box in the Marks tab of configuration properties.

    If you want to save the file with the same newline code, open all the files that you want to convert the newlines, and then select Save All with Encoding.

    Thanks!

    in reply to: insert a link with other characters #20004
    Yutaka Emura
    Keymaster

    Hello netsking,

    You might want to set the “Recognize Double-Byte Characters as URLs” check box in the Link tab of configuration properties.

    Thanks,

    Yutaka Emura
    Keymaster

    Hello mldisibio,

    Thanks for your report and information by email.
    This bug was fixed on my PC, and the next version will include the fixes. The problem was related to the new “More…” submenu.

    If anyone encounters the same problem and want to fix it before the update is released, please go to the History tab of the Customize dialog box, and then set “64” in the “Popup if Number of Items Exceeds” text box. This will effectively disable the “More…” menus, and fix the problem.

    Thank you,

    in reply to: Count property of selection return a wrong value? #19960
    Yutaka Emura
    Keymaster

    Hello,

    For the n’th selection, you can find the top and bottom position with the following method.

    xTop = GetTopPointX( eePosLogical, n );
    yTop = GetTopPointY( eePosLogical, n );
    xBottom = GetBottomPointX( eePosLogical, n );
    yBottom = GetBottomPointY( eePosLogical, n );
    Yutaka Emura
    Keymaster

    Hello,

    For the n’th selection, you can find the top and bottom position with the following method.

    xTop = GetTopPointX( eePosLogical, n );
    yTop = GetTopPointY( eePosLogical, n );
    xBottom = GetBottomPointX( eePosLogical, n );
    yBottom = GetBottomPointY( eePosLogical, n );
    in reply to: About Filter Bar #19952
    Yutaka Emura
    Keymaster

    Hello,

    If you select “Customize Markers” in the Tools menu, you will see the “Title” check box and text box where you can specify a title for each marker you define. This way, you can use shorter titles for all markers to fit in a window width.

    Thanks!

    in reply to: Export language spelling files with new words #19951
    Yutaka Emura
    Keymaster

    Hello,

    The user dictionary is saved in %APPDATA%\Emurasoft\EmEditor\Spell\UserDic.bin as UTF-16LE without signature.

    Thanks!

    in reply to: Count property of selection return a wrong value? #19950
    Yutaka Emura
    Keymaster

    Hello,

    This is actually not a bug, but it was not explained in the Help.

    document.selection.count always returns 0 if EmEditor is not in the multiple selection mode.

    It can be 1 when there is only one selection while it is in the multiple selection mode. For example, if you try to click at the same Cursor position while pressing CTRL key and move mouse and release the key. Or if there is only one word in a file and press CTRL + SHIFT + A, it should select the word and there will be only one selection.

    It is important to distinguish between the normal selection mode and the multiple selection mode, so I will leave the behavior as it is, and will add more explanation to the Help.

    Thank you!

    in reply to: About Filter Bar #19936
    Yutaka Emura
    Keymaster

    Hello r91085,

    The beta 3 of v15.0 addressed these issues. Please download at:

    https://www.emeditor.com/forums/topic/emeditor-v15-0-0-beta-3/

    Thanks!

    in reply to: Replace in Files – multiple times #19932
    Yutaka Emura
    Keymaster

    Hello Simon,

    Thank you for sending me files.

    The third parameter of the ReplaceInFiles method should be a fully-qualified path. You should replace “*.xml” with “C:\\… xmlFilesForChange …\\*.xml”. After this change, the macro works well.

    Thanks,

    in reply to: EmEditor v15.0.0 beta 1 #19930
    Yutaka Emura
    Keymaster

    Today, we are releasing EmEditor v15.0.0 beta 2.

    Updates from v15.0.0 beta 1 include:

    Bug Fixes

    • Fixed a certain bug related to embedded newlines in CSV mode when a very large file is opened.
    • Fixed a certain bug related to multiple folders separated by ‘|’ in the Find in Files dialog box.

    To Download

    http://files.emeditor.com/beta/emed64_14.9.902.exe (64-bit installer)
    http://files.emeditor.com/beta/emed32_14.9.902.exe (32-bit installer)
    http://files.emeditor.com/beta/emed64_14.9.902_portable.zip (64-bit portable)
    http://files.emeditor.com/beta/emed32_14.9.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!

    in reply to: Replace in Files – multiple times #19929
    Yutaka Emura
    Keymaster

    Hello Simon,

    This forum can change double quotes to curly quotes, and some other changes. Would you please zip a sample JavaScript file and send it to [email protected] ?
    Also, all these lines have the same issue? If so, please simplify the macro to only one or a few line(s) to make it easier to test.

    I have a problem with my existing Macro not working for replace in files across 80+ XML files

    Can you explain more details of the problem?

    Thank you,

    in reply to: About Filter Bar #19925
    Yutaka Emura
    Keymaster

    Hello,

    You can click the “Abort” button on the Filter toolbar to cancel the filter, and then click the “Refresh” button to resume the previously used filter.

    If you need to switch between multiple filters, you might want to record a macro. You can press Record button on the main toolbar before you do a filter operation, and then stop recording the macro. If you save the macro, you will find the filter was recorded as a JavaScript or VBScript, and you can reuse that macro. However, I might think an easier way to select a previously used advanced filter in future versions.

    Thank you,

    Yutaka Emura
    Keymaster

    Hello Meir,

    I think you have customized the main menu, but you will see these workspace comamnds if you reset the main menu (Tools > Customize Menus).

    Also, the new workspace feature has no interaction with the Projects plug-in. When you mention ‘solutions’ or ‘projects’, I suspect those are related to the Projects plug-in, but workspaces have nothing to do with the Projects plug-in. A workspace can include multiple group windows. Therefore, I didn’t allow multiple workspaces appear at the same time.

    Thank you for trying the beta version!

    in reply to: About Filter Bar #19920
    Yutaka Emura
    Keymaster

    Hello r91085,

    The logical OR operator is not included in v15.0.0 beta 1.

    https://www.emeditor.com/forums/topic/emeditor-v15-0-0-beta-1/

    Thanks!

    Yutaka Emura
    Keymaster

    Hello Meir,

    Multiple workspace features are now included in v15.0.0 beta 1. Although it might not be exactly what you expect, I hope this helps.

    https://www.emeditor.com/forums/topic/emeditor-v15-0-0-beta-1/

    Thanks!

    in reply to: EmEditor v14.9.0 beta 5 #19896
    Yutaka Emura
    Keymaster

    Hello gora,

    I fixed this bug on beta 6.
    https://www.emeditor.com/forums/topic/emeditor-v14-9-0-beta-6/

    Thank you!

    in reply to: EmEditor v14.9.0 beta 3 #19878
    Yutaka Emura
    Keymaster

    Hi gora,

    I think I understand the situation (Q5).
    When you “extract all”, only the first line of the matched string will be extracted. Since your search term was “\nSetEnvironment”, you are extracting each line before “SetEnvironment”. Therefore, the result was correct.
    However, I am not sure about Q6.

    in reply to: EmEditor v14.9.0 beta 3 #19876
    Yutaka Emura
    Keymaster

    Hello gora,

    I will fix Q2. As for Q3, The check box will be reset on the next beta version (beta 5). As for Q4, currently, EmEditor can’t highlight multiline keywords.

    I can’t reproduce Q1, Q5, and Q6. There are lots of conditions that affect test results. Can you make your test case as simple as possible, for example, the symbol “%%” matters? What about “abc”? Please make your test cases as simple as possible, and please email me sample files with detailed explanation as to how to reproduce the problem at [email protected], along with your registry file exported at HKEY_CURRENT_USER\Software\EmSoft. (Please zip all files.)

    After you export your registry, you might want to select “Tools” -> “Quick Launch” -> “Rest all Settings” to reset your settings and try again and see if you can reproduce the problem.

    Thank you,

    in reply to: EmEditor v14.9.0 beta 3 #19869
    Yutaka Emura
    Keymaster

    Hello gora,

    The default “Courier New” doesn’t support this combining character. Please use a supporting font, for example, Tahoma or Consolas, to show this character.

    Thanks.

    in reply to: EmEditor v14.9.0 beta 1 #19859
    Yutaka Emura
    Keymaster

    Hello Stefan,

    Thank you for showing the screencast. The bug was fixed on beta 2:

    https://www.emeditor.com/forums/topic/emeditor-v14-9-0-beta-2/

    Thank you!

    in reply to: EmEditor v14.9.0 beta 1 #19847
    Yutaka Emura
    Keymaster

    Hi Stefan,

    2) It is more complicated that just “only”, and I also found some bugs with the current implementations. I will look into the bugs.

    3) I am not sure if I understand the problem. Can you include a sample in this forum, or email me a sample file? I would like to reproduce the problem.

    Thanks!

    in reply to: EmEditor v14.9.0 beta 1 #19844
    Yutaka Emura
    Keymaster

    Hello Stefan,

    As for your first question with the CSV example from Stack Overflow. Embedded newlines mean those M and J reversed symbols (\r and \n characters) in CSV cells. These become embedded in a single line when you switch to a CSV mode, while separated into multiple lines when you switch to the Normal Mode. Does this answer your question?

    As for the second question, you should use “version(.|[\r\n])+5” for the regular expression, or check the “Regular Expressions “.” Can Match New Line Characters” check box in the Search tab of the Customize dialog box.

    Thanks,

    in reply to: about Markers Bar #19816
    Yutaka Emura
    Keymaster

    Hello,

    Currently, there is no option like “auto return to the start of document when I search at the end of the document” for markers.
    Is this something you wish to have in future versions? If so, I will consider it in future versions.

    Thanks!

    in reply to: About Filter Bar #19809
    Yutaka Emura
    Keymaster

    Hello,

    You can use a regular expression. For example:

    sys|app

    Thanks!

Viewing 25 posts - 1,201 through 1,225 (of 3,662 total)