Forum Replies Created
- AuthorPosts
ToadLoadin
Memberderekcohen wrote:
I’ve just noticed there is a document selector…Hi derekcohen,
When you right click the “Open Documents” icon in the plugin tool bar, then choose “properties…”, you can set the position where open documents pannel appears (up, right, down or left).
Once the “Symbol” pannel of Projects plugin is closed, you can set projects tree opened in right and documents list opened in left.
Wish that helps. :-)
toadloading
ToadLoadin
Memberluxxon wrote:
Dear ToadLoadin
the theme is great. But my digits 012345 didn’t show different color in minizen theme, I shoud set which setting?Hi luxxon,
The MinimalZen theme does not have the ability to display digits in different color, the screenshot used in this thread is just an example I copied from here to describe my idea.
I guess you can let EmEditor display digits in different color by setting a highlight word with regular expression in certain configurations, please check out my screencast. :-)
ToadLoadin
MemberHi Passiday,
You are right, a message box with OK and Cancel buttons could be implemented via the confrim method, and you can find an example of displaying a message box with YES, NO, and Cancel buttons here.
Further more, you can use a pop-up menu via the popupMenu object, so even more choices could be displayed. :-)
ToadLoadin
Membertonne wrote:
prompt returns a string; is “2” < "10" ?OIC, it’s a string comparison instead of integer one.
Thank you! :-D
ToadLoadin
Membertonne wrote:
Try
if (Math.abs(i) < Math.abs(n)) { //ascendingThat works!~~ :-) But…why that works? :-(
ToadLoadin
MemberHi zhouzh2,
I modified your macro to this:
cfg = document.Config;
var userVSsetting = cfg.General.VirtualSpace;
cfg.General.VirtualSpace = 'true';
cfg.Save(); //enable VirtualSpace so that when inserting at '^a=nb=n...' will run normally.
var i = prompt("Please enter the start number (not larger than 99)", 0);
var n = prompt("Please enter the end number (not larger than 99)", 1); //promote
if ((i == "")|| (n == "")){Quit();};
if ((i > 99)|| (i < 0) || (n > 99)||(n < 0)) {alert("Error!"); Quit();}; //errors
// Get current cursor position
var iCol = document.selection.GetActivePointX(eePosLogicalA);
var iLine = document.selection.GetActivePointY(eePosLogical);
// Caculate the number of lines
var nLines = Math.abs(i-n)+1;
status = "Inserting - Please Wait...";
for (var j=0; j < nLines; j++) {
document.selection.SetActivePoint(eePosLogicalA, iCol, iLine+j);
if (i < n) { //ascending
document.selection.Text = i;
i++;
} else { //descending
document.selection.Text = i;
i--;
}
}
cfg.General.VirtualSpace = userVSsetting;
cfg.Save();
status = "Inserting Completed";
Quit();And observed an interesting issue, as you noticed:
when 1<i10, or when 10<i<=99 and n<10
The first number inserted will be the biggest one, I guess that’s why your macro fall into a infinite loop, but I can not figure out why this happens, perhaps a bug? 8-)
ToadLoadin
MemberFeature Request:
Let the font customizable in OutputBar (font, color, weight and style),
so which could look in someway like this: :-)ToadLoadin
MemberHi Yukata,
Thank you for your quick response. I fully understand your choice, and hope to see future improvements. :-)ToadLoadin
MemberHi Yutaka,
There is an issue about the auto indent feature, please check out my my screencast. :-)
ToadLoadin
MemberHi Yutaka,
The global option for snippets transforming works great, thank you! :-)ToadLoadin
MemberHi zhouzh2,
If your “somethinghere” in every line is exactly the same:
a=1
b=2
c=3
..and:
a = 1 somethinghere
b = 2 somethinghere
c = 3 somethinghere
..perhaps you could use “Insert Number Sequence” plugin, the Simplified Chinese version is here.
ToadLoadin
MemberYutaka wrote:
Thanks for your screencast. The global option will be supported in beta 7.Thank you for your quick response! :-D
ToadLoadin
MemberHi Yutaka,
I made a screen recording to explain what the “global option for snippets transforming” means, please check it: :-)
http://www.dropbox.com/u/2516823/video/2010-04/emeditor-snipptes-regex-option.mp4
ToadLoadin
MemberBug Report
While exporting a portable version of EmEditor, dictionary files won’t be exported. Thus, if customized settings are exported at the same time and the “check spelling” is enabled, an alert will pop up.Feature Request
Support more regular expression option such as “global” in snippet transforming, then more dynamic snippet could be implemented, like this :-)ToadLoadin
MemberBug Report:
Hi Yutaka, there is something wrong with the new outline plugin, could you check my screen recording?
Please download my screen recording here:
http://www.dropbox.com/u/2516823/video/2010-03/emeditor-v10b4-outline-bug.flvToadLoadin
MemberBug Report:
An alert of “cannot find eeupdate.exe” will pop up at the first time running a portable version of EmEditor, whenever with customized setting exported or default setting exported.Feature Request:
Retaining shortcuts settings after updating to newer version of EmEditor.After updating to the latest version of EmEditor, the “EmEditor” item or “Find in files with EmEditor” will always be added to the context menu of Windows explorer, though I have choosed to diable them at the previous version. I personally prefer to open files with EmEditor via “Send to” menu, so retaining that choice would be great. :-)
ToadLoadin
MemberWOW, that’s really exciting! :lol:
January 7, 2010 at 11:50 am in reply to: Add ability to select wrap/no wrap on a per-windows basis #8027ToadLoadin
MemberI think for now the wrapping-style setting is stored in specific file type configration.
Which means, user can set plain text files to be wrapped by window, and some kinds of source code files to be not wrapped at the same time.
ToadLoadin
MemberHi Salabim,
You can backup your settings into a .reg file via the “Export all personal settings into a file” command, wich is the first choice listed in the “Import and Export Wizard”. :-)
ToadLoadin
MemberCtrl+Tab works fine under Windows 2000 with SP4, Action 2.
:-)Yutaka wrote:
I also tested on Windows XP, but still couldn’t reproduce this issue. Does anyone have the same issue? If so, please explain how you can reproduce this issue.ToadLoadin
MemberI personally think the online authentication of registration key is acceptable, if customer’s privacy is properly protected. As Paul said, there are many other software companies protect their products via online authentication, including gigantic ones like Microsoft and Adobe.
But I believe if EmEditor provides more informative instruction to users in different situation, such as those don’t have internet connection, Paul would be more satisfied, since most of companies described above provides very informative instruction and (or) alternative way for accomplishing the authentication task. :-)
ToadLoadin
MemberHi Salabim,
I guess your EmEditor will run at portable mode while your ini setting files are still in there, so you can’t find the choices in my screenshot. :-)
How about move them to a seperate folder, then try again? I think the ini setting files are:
ToadLoadin
MemberSalabim wrote:
Hi,I chose to use .ini files for making a backup of my settings, however, I noticed that it doesn’t start up as fast as when it used the registry. Is there any way to make it use the registry again please ?
I tried deleting the eeUseIni.ini file, but then I lost all my configuration and macro- and snippets changes I made inbetween them.
Please, How can I make it use the registry again, with current configuration ?
Thanks a lot.
Hi Salabim,
You can choose “Import personal INI files to the Registry”, from the “Import and Export Wizard”, which sits under the “Tools” menu. :-)
ToadLoadin
Member:lol: wow, looks really great, could you tell me how to use it?
Just setup a new macro snippet, then paste your macro into it?
Or, other setting needed? :-)ToadLoadin
MemberI think setting a enviroment variable such as $EmEditorPath$ in future version could help. :-)
- AuthorPosts