Forum Replies Created
- AuthorPosts
Yutaka Emura
Keymasterziguolo wrote:
Is there a way not to block the UI when a search in files is running? Could this run in a separate thread in the background so that users can continue working on other open documents?thx
Create a new group, or disable the tab, and then you can do Find in Files in.
January 16, 2008 at 8:01 am in reply to: seems AutoComplete plugin could not work correctly for portable version #5324Yutaka Emura
Keymasterleo_zzz wrote:
the AutoComplete can not config for a specific configuration,
the combobox is empty for the ”特定の設定で使用” in my computer.
portable version of EmEditor Professional 7.00.1 RC 10.does it read the config list from register only?
AutoComplete or WordComplete?
AutoComplete (old version) does not support INI settings, so it always reads from the Registry.
Yutaka Emura
Keymasterbora wrote:
Hi all!When in the properties of macros toolbar the “Add to My Macros when New Macro is Saved or Selected” check box is not selected I cant assign a shortcut to a macros that is not present in macros toolbar.
Is it possible to have some of the macros’ shown in the toolbar and be able to set shortcuts for others which are not added to the toolbar. Now I cant find a way to make it this way.
Any advice?
Macros you want to assign shortcuts must be in My Macros list. You can add existing macros to your My Macros list. To do that, click New button in My Macros tab of Customize Macros dialog.
Yutaka Emura
Keymasterfgdfg3434 wrote:
oo! tnx
—————————-
#language = “JavaScript”
#include “2.jsee”
Window.document.write( ‘Hello!’ );
—————————-
this is work, but i needed the following
———————————
// comment at top of the file
#language = “JavaScript”
#include “2.jsee”
Window.document.write( ‘Hello!’ );
———————————Again, you cannot put // comment at top of the file.
# lines must be at top!Also
Window.document.write( 'Hello!' );
should be
document.write( 'Hello!' );
Correct code:
#language = "JavaScript"
#include "2.jsee"
// comment at top of the file
document.write( 'Hello!' );
Yutaka Emura
Keymasterfgdfg3434 wrote:
!!!!!! Sorry for my english, I am not native english speakerI have 2 macroses. The first macros include call of second macros through new ‘#include’ directive.
After execution of first macros I have an error:
“Invalid sign/char
File ….1.jsee
Line 3″1.jsee
———————————–
#language = “JavaScript”
Window.document.write( ‘Hello 111 ! ‘);
#include “2.jsee”
———————————–2.jsee
———————————–
#language = “JavaScript”
Window.document.write( ‘Hello 222 ! ‘);
———————————–#include and all directives beginning with # must be before any real code. This is because EmEditor cannot distinguish directives inside once the code begins, and so all the directives must be at top of the file.
Yutaka Emura
KeymasterLTT wrote:
Hi,Multi-process mode.
1. Open/Activate a new window (Untitled), then open the trayicon menu, [Recent Files] or [Recent Folders] submenu in it won’t expand.
2. Open two or more files in separate windows, edit and save them.
Now, activate one window, then open [Recent Files] menu from the trayicon menu;
Activate another window, then open [Recent Files] menu from the trayicon menu again;
The order of [Recent Files] menu appears not the same each time opened. Is this by design? (In V6 the menu always reflects the latest order in the registry. I prefer that.)I fixed these two issues on RC 8. Thanks!
Yutaka Emura
KeymasterCriss wrote:
Could someone please explain me the difference between:
Configuration -> General -> Tab/Indent ->
Tab columns and Indent ColumnsF.e. if I set Indent Columns to 2 (Tab Columns is 8) then Increase Line Indent always inserts a tab (8 characters) and not 2 characters.
(What I want to do ist to increase/decrease the line indent by only 2 characters without inserting tabs.)Thanks
CrissI am not sure exactly what you want to do. Tab is related to the TAB key on the keyboard, and Indent is usually related to automatic displacement of the cursor when Auto Indent is enabled.
Yutaka Emura
KeymasterCriss wrote:
This regular expression
(?<=_______ ).*
does not work in outline plugin – whereas in highlighting it works fine. What I want to do is to display only the text after “_______ ” in the Outline.
Is this a bug?Thanks
CrissIn this Outline plug-in, the regular expression is only used to match strings, and not for changing the text to display in the Outline tree. The source code is available for this plug-in, and you or someone can modify the code to fit your needs.
Yutaka Emura
KeymasterCriss wrote:
Something like BoxEditor from Shao Hao could be built into EmEditor.
This Plugin is very useful and intuitive.
Unfortunately BoxEditor only works with the mouse and not with the keyboard.
Compare with the Power Columns of Boxer Texteditor.Thanks
ChristianYou can press CTRL + SHIFT + F8 to swtich to box mode. Also, you can assign a keyboard shortcut to any plug-ins.
Yutaka Emura
KeymasterCriss wrote:
Did you get my email? I hope you can reproduce it with this.
Thanks
ChrissNo, I have not received your email. Please let me know your email address (via a separate message or PM if you would like) so I will white list your email address.
Yutaka Emura
KeymasterAtomhrt wrote:
I believe that this bug still exists, but may be a Outline plugin issue. When you are editing a cmd file with the Outline plugin running and there is a line with a long line that wraps like this:
echo =========================================================================If you up arrow from below the line, the cursor will stop at the first “=” character and not let you move the cursor above the line.
This should be fixed on 7.00.1 RCx. Which version of EmEditor are you using?
Yutaka Emura
Keymasterxxx_pic wrote:
How about set up a checkbox option for it ?I might consider that in future versions. Thanks!
Yutaka Emura
Keymasterstanlyn wrote:
I need file group/project functionality in EmEditor where I open files from many different locations and save and open them as a group/project.The closest thing I can find is your save and restore workspace options. The problem with that is if you set EmEditor to be the default application to open .txt files and close EmEditor and from Explorer you double click a txt file it will load the file into EmEditor as expected. When you close, then reopen EmEditor it remembers the last workspace where the single file was last opened, therefore I must completely create a new workspace.
Also have an open default file, folder, or group when loading EmEditor, whereby it would open a single file if a file was listed, all files in a folder if a folder is listed, or a group of files if the filegroup was listed.
EditPadPro has this project functionality that I do miss, so please add it here…
Have you tried the Projects plug-in?
Yutaka Emura
Keymasterxxx_pic wrote:
Version: 7.00 final to 7.00.1 RC6In HTML Tags or Comments the cannot Highlight Matching Brackets
Example (HTML file):
<!–
[ something ]
( something )
–>// ( something )
Example (JS file):
// [ something ]Example (VBS file):
‘ [ something ]This is not a bug. Matching bracket does not work in comments any more due to users’ request.
Yutaka Emura
Keymastermhwlng wrote:
close button ‘right side of window’
how to reproduce, see above============
note that same problem occurs in RC6
and also if I select close button on active tab :if focus is on open documents and I click the x on the active tab, then the open documents windows is closed and not the active tab.
Marcel
I understand what you mean. It will be fixed on RC7. Thanks!
Yutaka Emura
Keymastermhwlng wrote:
Hello,I think that this is not logical for the ‘x’. because the open documents plugin has it’s window with it’s own ‘x’
now, if the focus is on the open documents list, then clicking the ‘x’ on the open documents window and the ‘x’ next to the tabs has the same effect.
I think the ‘x’ next to the tabs should only close the current tab (regardless of the focus) ?
I never had this problem in version 6 ?
Marcel
I need to clarify your issue. What is your selection for the “Close Button” drop-down list in the Tab Mouse Options dialog box (Customize > Tab > Mouse Options)? Please let me know exactly what your issue is, and how to reproduce your issue. You can also send me your screenshots at [email protected] .
Yutaka Emura
Keymasterletmein7 wrote:
“Automatically clear search and file history on exit” option on emeditor 7 pro.?thank you.
For search history, you can use the following macro, and assign this to run at the event of “Group Window Closed”. Unfortunately, file history cannot be cleared unless you check “Do no share process between documents” in the Advanced tab of Customize dialog box. If this is the case, you can uncomment the four lines in the code so all the file list will be also erased.
WshShell = new ActiveXObject( "WScript.Shell" );
//try { WshShell.RegDelete( "HKCUSoftwareEmSoftEmEditor v3Recent File List" ); } catch( e ){}
//try { WshShell.RegDelete( "HKCUSoftwareEmSoftEmEditor v3Recent Folder List" ); } catch( e ){}
//try { WshShell.RegDelete( "HKCUSoftwareEmSoftEmEditor v3Recent Font List" ); } catch( e ){}
//try { WshShell.RegDelete( "HKCUSoftwareEmSoftEmEditor v3Recent Insert List" ); } catch( e ){}
try { WshShell.RegDelete( "HKCUSoftwareEmSoftEmEditor v3CommonFind" ); } catch( e ){}
try { WshShell.RegDelete( "HKCUSoftwareEmSoftEmEditor v3CommonFindFlag" ); } catch( e ){}
Yutaka Emura
KeymasterThanks for explanation. This is a specification. You will need to set focus in text view before you press Ctrl+F4 to close the current document.
Yutaka Emura
Keymasterchabulier wrote:
Even you open an UTF8 file which contains special char, when you click save it will not work, fortunately the save as still can work.Definately this is not we expect.
You should select “Configured Encoding” in the Encoding drop-down list of Save Details dialog box. — which is the default settings.
Yutaka Emura
Keymastercptraddict wrote:
For what I have seen there is a way to change the color of the blinking cursor that shows your current position. I have been trying to find the correct category in the “Display” tab but none of the categories seem to have the desired effect. Does anyone know what category corresponds to the blinking cursor?Unfortunately, there is no way to change the color of the linking cursor only. The cursor color is an inverted color of the background. You might want to change the color of the current line, or display horizontal/vertical lines.
Yutaka Emura
Keymastertranglos wrote:
Very often I need to ensure that a string does not exceed a particular length.To this end it would be very helpful if EmEditor would display current selection length in the status bar, next to the cursor position field. I hoped this option would already be available in Customize -> Status, but it isn’t. Could this be added, please?
Use the following macro:
SelLength.jsee:
status = "Selection: " + document.selection.Text.length + " characters.";
and run this macro when you want to find the selection length. Or, even better, set this macro run at the event of selection changed. To do this, select Customize on the Macros menu, in the My Macros tab, select this macro (SelLength.jsee) in the list, check Runs at Events, click Events button, and check Selection Changed.
Yutaka Emura
KeymasterTheXman wrote:
How about adding a “Save As…” toolbar button also? :-)Use the following macro, and you can add this macro to anywhere in the toolbars.
SaveAs.jsee:
#icon="any icon file"
#title = ""
#tooltip = "Save As"
editor.ExecuteCommandByID(4100);
Yutaka Emura
Keymasterwhileloop wrote:
I suggest add the following menu commands:
[Edit]
Enable Virtual Space
[View]
Show Ruler
Show Line NumberAlso I suggest add an option to enable virtual space for column select. I requre this to keep alignment of columns (when not every line of the same length). Changing the option to allow this, and then changing back everytime is inconvenient.
Use following macros, and you can add these macros to anywhere in the menu.
TogleVirtualSpace.jsee:
cfg = document.Config;
cfg.General.VirtualSpace = !cfg.General.VirtualSpace;
cfg.Save();
ToggleRuler.jsee:
cfg = document.Config;
cfg.General.ShowRuler = !cfg.General.ShowRuler;
cfg.Save();
ToggleLineNumbers.jsee:
cfg = document.Config;
cfg.General.ShowLineNumbers = !cfg.General.ShowLineNumbers;
cfg.Save();
Yutaka Emura
Keymasterwhileloop wrote:
When open a file with unknown encoding by context menu, EmEditor display the following dialog.I suggest add option to change encoding in this dialog.
I can’t see the image. Please email me at [email protected].
Yutaka Emura
KeymasterI cannot reproduce your problem of Method 1 in Replace dialog. What macro do you use? Please let me know which version of EmEditor and OS you are using. Please email me a sample file and a sample macro so that I can reproduce your problem. Please make your sample macro small enough to use as a test case. Thanks! [email protected]
WindBell wrote:
I want to merge all line to make each line end with “]” or “>” or “=”So I use
Regular Expression
Method 1:
find “([^]=>])n”
then replace with “1 “Method 2:
find (?])n ( Search every n without a “]” or “>” or “=”
then replace with nothingBoth works well under Find/Replace dialog .
But Method 1
Delete a character before “n” and generate a strange character :Is it a bug or my fault in writing this script ?
- AuthorPosts