Forum Replies Created

Viewing 25 posts - 1 through 25 (of 41 total)
  • Author
    Posts
  • in reply to: Custom configuration and file extension #8774
    MariaK
    Participant

    Select your configuration (”Tools | Select Configuration”) and then open the preferences of this configuration (”Tools | Properties for Current Configuration”) and go to ”Association” tab. If ”Enable Association” is active and your desired suffix is defined, EmEditor opens the specified file type with this special configuration.

    in reply to: delete the whole line hotkey #8773
    MariaK
    Participant

    You want to assign only ”[AltGr]” to a function? That’s impossible. You must assign a combination, for example ”[AltGr][D]”.

    Edit: Too late…

    in reply to: no tabs #8739
    MariaK
    Participant

    What’s with a macro to diasable/enable the ”Tab” function if the plug-in ”OpenDocuments” is active/inactive?

    MariaK
    Participant

    »True Color support on Windows 2000 SP4.«

    That you should have in former times said to me, Yutaka. Now I like EmEditor again.
    Nice work!

    MariaK
    Participant

    Please continue using EmEditor with 16 color mode.

    No, I will not do that. And I will not use EmEditor 10 anymore. That’s my final consequence from this affair.

    MariaK
    Participant

    And what should, in your opinion, all the Windows 2000 users do now?

    On the one hand you write »Supported OS: Windows 7/Vista/XP/2000 SP4/Server 2008/Server 2003«, on the other hand you deny any support for 256 color icons (Windows 2000 do not support icons with alpha transparency). That does not fit.

    I’m very disappointed about your policy.

    MariaK
    Participant

    The 256 color button in the Toolbars dialog box was deprecated

    Why?

    The result of this sanction can you see here: EmEditor 10-RC3 on Windows 2000-SP4.

    Not really pretty.

    in reply to: how can i direct find the selected text with F3 #8399
    MariaK
    Participant

    Also you can change keyboard shortcuts within the configuration dialog, tab ”Keyboard”.

    in reply to: EmEditor Professional v10 beta 9 (9.90.9) #8350
    MariaK
    Participant

    I didn’t like it either, but the fact is lots of people are confused with the default behavior. Most people expect CTRL + TAB behave like Internet Explorer and Firefox where CTRL + TAB switches to the next document (right tab). So, that is why I changed the default CTRL + TAB should go to the next document (right tab). You can change the behavior by changing the keyboard shortcut.

    However, I like your opinion. I might change the default as you suggested.
    Other users, what do you think?

    I don’t care. I do not use ”Last Accessed Document”/”Least Accessed Document” commands; and for ”Next Document”/”Previous Document” I used my own keyboard shortcuts.

    How do I change my keyboard settings? When I want to change “last accessed document” to “CTRL-TAB” when I press this key combination, I change from the keyboard tab to the spelling tab.

    Press one key after the other key and not in combination; first [CTRL] and then [TAB].

    MariaK
    Participant

    Thank you!

    in reply to: [done] Check boxes for printing header/footer #8342
    MariaK
    Participant

    Thank you!

    in reply to: EmEditor Professional v10 beta 8 (9.90.8) #8317
    MariaK
    Participant

    – The following commands were added:

    View:
    Lines Numbers
    Ruler

    Now I can delete an old suggestion. Nice.

    in reply to: About Binary (Hex View) #8254
    MariaK
    Participant

    Line numbers? Great! I didn’t knew that. Thanks, Yutaka.

    in reply to: About Binary (Hex View) #8251
    MariaK
    Participant

    Better than before. But where are the obligatory hex offsets?

    in reply to: EmEditor Professional 10 beta 1 (9.90.1) #8195
    MariaK
    Participant

    by Yutaka on 3/22/2010 9:42:22 pm

    Hello Maria,

    Thanks for trying EmEditor beta version!

    You can disable the context menu shortcuts by clearing the “Add a shortcut to the Context Menu on Explorer” check box in the More Shortcuts dialog (Tools > Customize > Shortcuts > More Shortcuts button). However, this will also disable “EmEditor” menu item when you right-click on normal files. They cannot be disabled separately. Is this something you want to do (disabling separately)?

    Ah, inside this dialog; I’ve got it. Yes, that was what I want. Thanks, Yutaka.

    (I don’t require a separately option; foreign context menu entries are generally disabled on my machines.)

    in reply to: EmEditor Professional 10 beta 1 (9.90.1) #8189
    MariaK
    Participant

    The context menu displayed by right-clicking on a folder in Windows Explorer now includes the new Find in Files with EmEditor command.

    On which way can I turn off this pretended „improvement“ without any direct access to the windows registry?

    in reply to: Problem with folder when save a new file #8057
    MariaK
    Participant

    Try the ”/di” parameter; example:

    C:EmEditoremeditor.exe /di “C:Folder”

    in reply to: Show/hide all visualization characters #8056
    MariaK
    Participant

    Yes, but only with a macro; example:

    #icon = “Buttons.icl”,13
    #title = “Show Marks”
    #tooltip = “Show Marks”

    // Displays or Hides Marks.

    myobject = document.Config;

    if (myobject.Mark.ShowReturns==0 && myobject.Mark.ShowEOF==0 && myobject.Mark.ShowTabs==0 && myobject.Mark.ShowSpaces==0 && ShowDBSpaces==0 && CrLfDifferent==0 && ShowIndentGuides==0 && myobject.Mark.ShowControlCharacters==0) {
    myobject.Mark.ShowReturns=”true”; // Returns
    myobject.Mark.ShowEOF=”true”; // End of File
    myobject.Mark.ShowTabs=”true”; // Tabs
    myobject.Mark.ShowSpaces=”true”; // Spaces
    myobject.Mark.ShowDBSpaces=”true”; // Wide Spaces
    myobject.Mark.CrLfDifferent=”true”; // CR and LF with Different Marks
    myobject.Mark.ShowIndentGuides=”true”; // Indent Guides
    myobject.Mark.ShowControlCharacters=”true”; // Control Characters
    }
    else {
    myobject.Mark.ShowReturns=”false”; // Returns
    myobject.Mark.ShowEOF=”false”; // End of File
    myobject.Mark.ShowTabs=”false”; // Tabs
    myobject.Mark.ShowSpaces=”false”; // Spaces
    myobject.Mark.ShowDBSpaces=”false”; // Wide Spaces
    myobject.Mark.CrLfDifferent=”false”; // CR and LF with Different Marks
    myobject.Mark.ShowIndentGuides=”false”; // Indent Guides
    myobject.Mark.ShowControlCharacters=”false”; // Control Characters
    }

    myobject.Save();

    in reply to: Ctrl+Tab behavior change in EmEditor v9. A bug? #7999
    MariaK
    Participant

    Now I see the differences and I understand what you mean. But unfortunately, I can’t help you, sorry.

    in reply to: Ctrl+Tab behavior change in EmEditor v9. A bug? #7993
    MariaK
    Participant

    Menu ”Tools | Customize…”, tab ”window”, check box ”Switch to Last Used Document for Next Document Command”; disactivate this option.

    in reply to: German x64 v9 #7942
    MariaK
    Participant

    I’m interested in a german x64 version of the current EmEditor. Is there any?

    Not yet. But a german language file is in progress.

    Or can I use language ressource of version 8?

    In no case! This doesn’t harmonise with each other.

    in reply to: Help needed about bookmark #7818
    MariaK
    Participant

    Menu ”Tools”, menu item ”Customize…”, tab ”File”, check box ”Save Cursor Position and Bookmarks”.

    in reply to: Remove space between a number and a fraction … #7808
    MariaK
    Participant

    It’s very simple; within a macro you must mask the backslash ”” with a prefix backslash ””. Here’s an example:

    document.selection.Replace(“([0-9]+) ([¼,½,¾])”,”12″,eeFindNext | eeReplaceAll | eeFindReplaceRegExp);

    in reply to: Remove space between a number and a fraction … #7798
    MariaK
    Participant

    You can use a group and a back reference.

    Find:
    ([0-9]+) ½
    Replace with:

    Extended version:

    Find:
    ([0-9]+) ([¼,½,¾])
    Replace with:
    12

    in reply to: I don't like the grey background (EmEditor 9) #7766
    MariaK
    Participant

    Tools | Properties for Current Configuration” or ”Properties for All Configurations”, Tab ”Display”, ”Specify Part”-List Box: ”Outside of regions”; change now the ”Background Color” from grey to white.

Viewing 25 posts - 1 through 25 (of 41 total)