Forum Replies Created
- AuthorPosts
- ToadLoadinMember
Try replace
(d+)=(d+)
with
2=1
:-)
ToadLoadinMemberJust click the “comment” link, it will show you the comments visitor previously posted and the input form. :-)
ToadLoadinMemberSorry, I’m not familiar with Vi or gVim, so I never tried to contact the author of EmVi.
Perhaps you can post a feature request comment on the release post of the lastest version:
ToadLoadinMemberStefan is right, I found it, EmVi, in the online library of EmEditor plugins, and from there, I found the author’s official page.
But I don’t thinks there is a 64bit version available.
ToadLoadinMemberthanksgod wrote:
Hi, this is another example,
…For this situation, I guess sub-patterns with parentheses may help :-)
Try replace
^.*(https?://members.(abc|xyz).com).*$
with
1
ToadLoadinMemberthanksgod wrote:
I would like to ask about the Regular Expression please.
…Perhaps
UUID:.+
would work, “.+” means one or more characters, so it could match either 10 or 20 characters both. :-)
ToadLoadinMemberIt’s just some animated gif images, stored in my Dropbox cloud space.
You can record your action via many screen record software, free ones like AutoScreenRecorder is fine, commercial ones like Camtasia studio is better, but expensive.
After saving my screencast as avi file, I convert it to animated gif image via Format Factory.
Then, put gif image in the “Public” folder of your Dropbox, right click and you will get the direct link which you could use in the forum.
Because of my poor English, I use these animated screencasts to help me explain ideas or problems. :-P
ToadLoadinMemberHere it is. :-)
`# Interface.write( document.Config.Highlight.LineComment1 );`==${1/.+?/=/g}==
`# Interface.write( document.Config.Highlight.LineComment1 );`= ${1:Your comment goes here.} =
`# Interface.write( document.Config.Highlight.LineComment1 );`==${1/.+?/=/g}==
$0ToadLoadinMemberI just found that both of the two macro above is not perfect due to lack of checking the setting whether “regular expressions can match new line characters” or not…
ToadLoadinMember:-) I think it could be done with this macro:
// If nothing selected, select all.
var currentSelection = getSelection();
// A find'n replace using regular expression
// (in selected range only).
currentSelection.Replace("^s*$n", "", eeReplaceSelOnly | eeReplaceAll | eeFindReplaceRegExp);
// earase search keyword highlighting.
document.HighlightFind = false;Then, you could use this macro to insert empty lines between each “none-empty” line (forgive my poor english):
// If nothing selected, select all.
var currentSelection = getSelection();
// A find'n replace using regular expression
// (in selected range only).
currentSelection.Replace("n", "nn", eeReplaceSelOnly | eeReplaceAll | eeFindReplaceRegExp);
// earase search keyword highlighting.
document.HighlightFind = false;ToadLoadinMemberYou can find it here.
ToadLoadinMemberHi, you could change it from the “HTML config” -> “saving…” window.
February 25, 2012 at 6:12 am in reply to: Forum Posts with Big Picture cannot See the Reply / Edit Button #10080ToadLoadinMemberYou are welcome. :-)
February 25, 2012 at 12:39 am in reply to: Forum Posts with Big Picture cannot See the Reply / Edit Button #10078ToadLoadinMemberMaybe add a css rule
div.comText img {max-width:569px}
to the button of combined.css will help. :-)
ToadLoadinMemberThat’s weired… I can’t figure out why.
ToadLoadinMemberwell… for me, I see a big yellow frog in a ice cube. :-P
February 22, 2012 at 4:05 am in reply to: WIin2008 R2 X64 and Emeditor 11.0.4 32bit Add a shortcut to the context menu on Explorer #10058ToadLoadinMemberThe EmEditor is missing in the context menu of explorer in Win2K8 R2 x64, but could be found in “send to” or “open with…” sub-menu.
Right?
ToadLoadinMemberoh, yes, it’s a typo… :-P
ToadLoadinMemberincremental search is “find as you [d]time[/d]type” stuff like that,
regular search cannot do searching while you typing in the patterns, but it’s very very powerful but complex, sometimes I have the feeling that search with regex is “search with good luck”. :-P
Edit: 100 post, yeah! :-D
ToadLoadinMemberThere is a 3rd part plugin make this possible, but I don’t remember the name of that plugin. :-(
ToadLoadinMemberI guess while recording the macro, if you turned case sensitive on, it will also be recored into the macro code.
ToadLoadinMemberWell, I got it.
It’s because there is a line comment setting which starts with the character “;”.
While the line comment setting turns off, the regex highlight works fine.
Hi Yutaka, is this a bug?
ToadLoadinMemberEmEditor v11.0.5 (32bit)
under Win7 32bit, simplified Chinese…
ToadLoadinMember囧 Quite weired…
I have exactly the same version.
ToadLoadinMemberHi, I’m not a JavaScript geek, but I guess you could use code like:
charBefore = "[;
charAfter = ]";
strSelectedText = document.selection.Text;
document.selection.Text = charBefore + strSelectedText + charAfter; - AuthorPosts