Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #17976
    Fish
    Participant

    Hi! Could you tell me how to find & download the x64 edition of the “Align Left” plug-in?
    I use this plug-in frequently, but I can’t find x64 edition on EmEditor’s web site.

    #17978
    Stefan
    Participant

    Hi Fish,

    if you didn’t find such a Plugin in the Library at http://www.emeditor.com/library/#toggle-id-6
    it is because nobody have made such a Plugin.
    .
    .

    But why do you need such a Plugin at first place?

    As I read the description “Align Left plug-in: Removes the spaces at the beginning of each selected line.”
    me think you can do this by utilizing a macro too.

    document.selection.Replace(“^\\s+”,””,eeFindNext | eeReplaceAll | eeReplaceSelOnly | eeFindReplaceRegExp);

    Such macro you can launch by main or context menu, by menu bar button or by keyboard shortcut.
    If you need more help,… just ask.

    #17979
    Fish
    Participant

    Hi! Stefan,
    I use this plug-in because my files have a lot of leading spaces need to be process.
    I will try to use macro first, it’s powerful.
    Thank you for your advice :)

    #17988
    Fish
    Participant

    Hi! Stefan,
    I had tried and modified the macro you provide,
    and it can delete half-width spaces, full-width spaces & tabs now.

    document.selection.Replace("^[ \t ]+","",eeFindNext | eeReplaceAll | eeReplaceSelOnly | eeFindReplaceRegExp);

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.