Forum Replies Created

Viewing 25 posts - 751 through 775 (of 3,701 total)
  • Author
    Posts
  • in reply to: Regex Find and Move #23275
    Yutaka Emura
    Keymaster

    Hello,

    I would like to clarify your question in order to help you.
    Is the “Cat1…” line always immediately above the “Dog1…” line?
    If so, set the Use Regualr Expression option, and replace

    (Cat.*?Cat2.*?)\n(Dog1.*?Dog2.*?)\n

    with

    \2\1\n

    If not, please figure out the maximum number of lines that exist between the “Cat1…” line and the “Dog1…” line. If it is 10 lines, you can replace:

    (Cat.*?Cat2.*?)\n{1,10}(Dog1.*?Dog2.*?)\n

    with

    \2\1\n

    and also go to the Advanced button in the Replace dialog box, and enter “10” to the “Additional Lines to Search for Regular Expressions” text box.

    I hope this helps.

    in reply to: Spelling / WordComplete #23274
    Yutaka Emura
    Keymaster

    On the next beta (v17.7.92), we are adding the Never and Keep Original Text when Completes option to the Match Case drop-down list box in the Matching Criteria page of the Word Complete Properties. Thanks,

    in reply to: Active String #23271
    Yutaka Emura
    Keymaster

    Thanks for clarification. This issue will be fixed on the next beta.

    Yutaka Emura
    Keymaster

    Thanks for your email. The issue will be fixed on the next beta.

    in reply to: Spelling / WordComplete #23269
    Yutaka Emura
    Keymaster

    We fixed the Issue 2-2 on the next beta.
    Thanks,

    in reply to: Indent #23268
    Yutaka Emura
    Keymaster

    Issue 1: We changed the behavior of Line Indent-related commands par your comment on the next beta. This change also applies to Tab/Shift+Tab commands. Please let us know if anyone believes this change should be an option.

    Issue 2: We fixed this issue on the next beta.

    Thanks,

    in reply to: Outline #23266
    Yutaka Emura
    Keymaster

    This issue will be addressed on the next beta. Thanks!

    in reply to: Active String #23265
    Yutaka Emura
    Keymaster

    Hello,
    I would like to clarify your question.
    What is the Application key? Is it the Alt key?
    How did you assign your key?
    Also, how did you assign Active String (“stings enclosed by double-quotation marks” – “Right Clicked”)?
    Is “Active String” a path to a macro file? For instance, is it actually something like “C:\test\test.jsee”?
    Thank you,

    in reply to: Snippet #23264
    Yutaka Emura
    Keymaster

    This issue will be fixed on the next beta. Thank you!

    Yutaka Emura
    Keymaster

    Hello sky,

    Does EmEditor display the same dialog box even if you open the entire file (or without Large File Controller)?

    If the dialog box appears only when you specify a filter, then this might be a bug. In this case, would you please send me a sample file so that we can reproduce the issue?

    If the dialog box appears both when you open the entire file and when you specify a filter, this is an intentional behavior, and cancelling the dialog box will close the file.

    Thanks,

    in reply to: Text Rendering #23241
    Yutaka Emura
    Keymaster

    Version 17.7.91 will fix the Issue 3-1 and 3-2, 4 and 5.
    We will try to optimize for scrolling speed in the future.
    Thanks,

    in reply to: Spelling / WordComplete #23237
    Yutaka Emura
    Keymaster

    Issue 1 is actually an intentional behavior. Users can be distracted if red wiggly line appears while typing. However, the next version will show red wiggly line if the cursor moves from the bottom position to another position.

    Issue 2: this will be fixed on v17.7.91.

    Issue 3: I am not sure exactly what this means. Type “Capitl”, and do you want EmEditor to show “capital” instead?

    in reply to: Custom Delimiter Character #23228
    Yutaka Emura
    Keymaster

    You can change or define a new delimiter in the CSV page of the Customize dialog box. Additionally, if you want EmEditor to detect CSV automatically, you can go to File page of configuration properties – “CSV files to detect” list box.

    in reply to: Text Rendering #23224
    Yutaka Emura
    Keymaster

    On the next beta version (v17.7.91), we added the Use DirectWrite command, which can be accessible from the arrow button on the right side of the Fonts button on the toolbar.
    Thanks,

    in reply to: Selecting; Moving; Theme; Incremental; SearchList #23223
    Yutaka Emura
    Keymaster

    We’ve changed the behavior. On the next beta version (v17.7.91), double-clicking a single space/tab will actually select that space/tab only.
    Thanks,

    in reply to: Text Rendering #23221
    Yutaka Emura
    Keymaster

    As for Issue 1, the following macro can toggle the Directwrite option.

    b = editor.GetProfileInt( eeRegCommon, "", "UseDirectWrite", 0 );
    editor.WriteProfileInt( eeRegCommon, "", "UseDirectWrite", b ? 0 : 1 );
    editor.RefreshCommonSettings();

    We will also consider adding the command for this.

    As for Issue 6, yes, the triangle node image is expected.

    We will look into the other issues.

    Thanks,

    in reply to: Filter #23220
    Yutaka Emura
    Keymaster

    We are fixing the first issue.
    The Adjust Separator Positions (Visible Lines Only) command should adjust separator positions only on filtered text.
    Thanks,

    Yutaka Emura
    Keymaster

    We are fixing the crash problem.
    The fact is both “Ignore” and “crash” buttons will crash anyway. The next version will include only “Crash” button when there is no choice. In some cases, “Ignore” will work during a file opening.
    Thanks,

    in reply to: Better hex display in text mode #23213
    Yutaka Emura
    Keymaster

    These background/foreground-color-inversed characters are similar to caret notations except that carets are replaced with inversed representation. Please see :
    https://en.wikipedia.org/wiki/Caret_notation

    This way the control characters are readable while still preserving the width of each character.

    Thanks,

    in reply to: Better hex display in text mode #23211
    Yutaka Emura
    Keymaster

    Hi Yang Yang,
    I reproduced the symbols when opened as UTF-8 with EmEditor. Since the binary sequences can’t be decoded with UTF-8, invalid characters appear. Please use the Western European encoding or Binary (ASCII view) to open the file.
    Thanks,

    in reply to: Better hex display in text mode #23210
    Yutaka Emura
    Keymaster

    Hi Yang Yang,
    It looks that the file was opened with a wrong encoding with EmEditor because the symbol shouldn’t appear. What are those character code value(s)? Can you make sure if you use the same encoding to open the file as the other editor, and use the same font? Can you also please try opening the file with Binary (ASCII view) with EmEditor?
    Thanks,

    in reply to: Better hex display in text mode #23208
    Yutaka Emura
    Keymaster

    Hello Yang Yang,

    How about the Show Control Characters option in the Marks page of configuration properties?

    in reply to: Multiple Selection Editing #23201
    Yutaka Emura
    Keymaster

    We fixed Issue 3 and 5 on v17.7.0. We will think about other issues in the future.
    Thanks!

    in reply to: Keyboard Map / Quick Launch #23191
    Yutaka Emura
    Keymaster

    We will think about Issue 7, 9, and 12.
    Issue 11 is the specs. Keyboard Map always needs the command list.
    We are fixing all the other issues.
    Thanks!

    in reply to: Display issue in split panes #23179
    Yutaka Emura
    Keymaster

    We are fixing this issue on the next version. Thanks!

Viewing 25 posts - 751 through 775 (of 3,701 total)