Forum Replies Created
- AuthorPosts
- ToadLoadin Member- Try replace - (d+)=(d+) - with - 2=1 - :-) - ToadLoadin Member- Just click the “comment” link, it will show you the comments visitor previously posted and the input form. :-)  - ToadLoadin Member- Sorry, 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: - ToadLoadin Member- Stefan 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. - ToadLoadin Member- thanksgod 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 - ToadLoadin Member- thanksgod 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. :-) - ToadLoadin Member- It’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 - ToadLoadin Member- Here 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}==
 $0- ToadLoadin Member- I 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…  - ToadLoadin Member- :-) 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;- ToadLoadin Member- You can find it here. - ToadLoadin Member- Hi, 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 #10080 February 25, 2012 at 6:12 am in reply to: Forum Posts with Big Picture cannot See the Reply / Edit Button #10080- ToadLoadin Member- You are welcome. :-) February 25, 2012 at 12:39 am in reply to: Forum Posts with Big Picture cannot See the Reply / Edit Button #10078- ToadLoadin Member- Maybe add a css rule - div.comText img {max-width:569px}- to the button of combined.css will help. :-) - ToadLoadin Member- That’s weired… I can’t figure out why. - ToadLoadin Member- well… 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 #10058 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 #10058- ToadLoadin Member- The 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? - ToadLoadin Member- oh, yes, it’s a typo… :-P - ToadLoadin Member- incremental 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 - ToadLoadin Member- There is a 3rd part plugin make this possible, but I don’t remember the name of that plugin. :-( - ToadLoadin Member- I guess while recording the macro, if you turned case sensitive on, it will also be recored into the macro code. - ToadLoadin Member- Well, 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? - ToadLoadin Member- EmEditor v11.0.5 (32bit) - under Win7 32bit, simplified Chinese… - ToadLoadin Member- 囧 Quite weired… - I have exactly the same version.   - ToadLoadin Member- Hi, 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





