Forum Replies Created
- AuthorPosts
- ToadLoadinMember
Hi, try deselect the option “make comments collapsible” in outline plugin properties, maybe it helps. :)
ToadLoadinMemberThere is code folding, please use the “outline” plugin, which is part of the emeditor intall package. :)
ToadLoadinMemberHi user,
Maybe you can check out the “Help” -> “keyboard map…”, there is a command “Toggle Find toolbar” under the “view” category.
ToadLoadinMemberHi,
I guess it could be done by macro:
– start “record macro”,
– replace one special character to the corresponding latin character (replace all)
– stop record
– “edit” the macro recored, copy all code generated by emeditor and paste it else where.
– repeat the procedure above with each special character you want to replace, except append the generated macro code to the first one.
– save the cumulated code to a single macro, put it in toolbar or asign it a short-cut key.Best regards! :-)
ToadLoadinMemberYes, it works! Thank you! :-D
Yutaka wrote:
Hi ToadLoadin,You should write like this:
function toggleLineNum() {
var cfg = document.Config;
var isLineNumOn = cfg.General.ShowLineNumbers;
cfg.General.ShowLineNumbers = !isLineNumOn;
cfg.Save();
}ToadLoadinMemberHi Yutaka,
I rewrote my function to this:
function toggleLineNum() {
var cfg = document.Config;
var isLineNumOn = document.Config.General.ShowLineNumbers;
document.Config.General.ShowLineNumbers = !isLineNumOn;
cfg.Save();
}but it still does not work… :-(
Yutaka wrote:
Hi ToadLoadin,This is a frequently asked question. Please use Save() when you finished settings:
cfg = document.Config;
/// do something
cfg.Save();
Of course, you can use the EmEditor command “Line Number”, and there is a toolbar button for this command.
ToadLoadinMemberThank you webern and Yutaka! :-D
ToadLoadinMemberThank you! :-)
Yutaka wrote:
Hi ToadLoadin,Probably one in the “General” tab is what you are looking for.
One in the display tab is for display purpose only. I hope I answered your question.Thank you,
ToadLoadinMemberHi CrashNBurn, try + instead of when you entering a multiline-search-string in the multiline-edit-box. :-)
ToadLoadinMemberWell… You are right, the “Find in Files” or “Replace in Files” window lacks the convenience. Perhaps you could use regular expression or escape sequence to perform a multiline search/replace. :-(
January 24, 2011 at 6:00 am in reply to: tooltips for collapsed code in outline mode bleeding through #9230ToadLoadinMemberI found it’s quite easy to reproduce this issue:
1. Hover mouse cursor over the collapsed block of some code, the tip will appear.
2. Press + , switch to another window, the tip will remain on top of the screen, make some area inaccessible.
3. Switch back to the EmEditor window, and move mouse cursor, the tip dissappears.Please watch my screencast. :-)
ToadLoadinMemberHi, Assenumer, just click here when you search or replace:
Regards :-)
ToadLoadinMemberHi Jamil,
Perhaps “Erase Find Highlight (Alt+F3)” is what you want. :-)
ToadLoadinMemberHi Derek,
Perhaps you need to choose a color theme which has better contrast for selected text, cuz I don’t know if there is any work around for highlight a line while some text selected at the same time. :-(
Regards,
ToadLoadingToadLoadinMemberI guess this could be acomplished by macro, then by assigning a short-cut key to the macro, you could do what you want. :-)
ToadLoadinMemberI noticed that the installer is improved too, the process of installation is much faster than before. :-)
ToadLoadinMemberHi Derek,
You can enable horizontal and vertical line in the “Current Configuration” -> “Scroll” Tab, the short-cut key is “Alt+Enter”. Then it will be very easy for locating the cursor. :-)
Regards,
ToadLoadingToadLoadinMemberMattG wrote:
Hi!
Any chance of simple backup my Snipplets ?
Just update my Version and lost my Snipplets.
cheers
MatthiasHi Matthias,
You can backup your snippets by exporting it, like this:
Regards,
ToadloadingToadLoadinMemberYes, you should check that. 8-)
ToadLoadinMemberHi Derek,
I guess this option would work. :-)
(Under menu item “Tools” -> “Customize…”)toadloading
ToadLoadinMemberHi Derek,
You can check “Multiline” option on Find or Replace dialogue, then the text box will expand to multiline.
Wish that helps. :-)
toadloading
May 24, 2010 at 12:46 pm in reply to: Will the "Simplified Chinese" version be avaiable for V10? #8509ToadLoadinMemberzhouzh2,
Yep, you are right, it’s not polite to other users, I won’t do that any more… 8-)
Thanks for your recommendation! :-D
May 24, 2010 at 10:48 am in reply to: Will the "Simplified Chinese" version be avaiable for V10? #8506ToadLoadinMemberRobben:
我试了下,可以用,不过作用不大,而且要注意选择下面的选项:大部分菜单里面的项目还是英文的,只有廖廖几个中文项目,用处不大。
最后发个牢骚:DropBox被墙后要找个能直接外链图片的空间真难…… :-(
ToadLoadinMembergan wrote:
Well i actually agree. It might not be fair to say it’s cheap since that might not be the case for everyone like you said. I also think it would be a good idea to regulate the price in such countries, but might be a challenge to find the right sales model if the price should differ between countries. Also prevent that people from other countries try to take advantage of such a deal and pretend to be from Russia to get a lower price for the product…I think you are right, set different prices for different countries would be great! People from China can purchase PC game Plant vs. Zombies from PopCap just for RMB¥28.00 (about USD$4.10), but friends in the United States told me in US, the price is USD$19.95. This marketing strategy boosts sales of this game in Chinese market greatly, with iPhone and iPad version of this game. :-)
But I also agree with your concern of the maneuverability of setting different prices. :-(
May 23, 2010 at 12:39 pm in reply to: Will the "Simplified Chinese" version be avaiable for V10? #8498ToadLoadinMemberDaniel:
我也想汉化 EmEditor,但我不是个程序员,写代码只是我的一个爱好,不会使用官网提供的英文资源包……
如果不嫌麻烦,你可以在“汉化新世纪”找到汉化版的 EmEditor,并从其中提取出简体中文语言包。比如这是我刚提取的简体中文语言包(v9.16)。 :-)
- AuthorPosts