Tagged: align left, plug-in, x64
- AuthorPosts
- February 9, 2014 at 4:52 pm #17976FishParticipant
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.February 9, 2014 at 11:35 pm #17978StefanParticipantHi 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.February 10, 2014 at 12:47 am #17979FishParticipantHi! 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 :)February 12, 2014 at 12:50 am #17988FishParticipantHi! 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);
- AuthorPosts
- You must be logged in to reply to this topic.