Forum Replies Created
- AuthorPosts
- kuo_cityMember
I try outline plugin in v8.01, In “Custom” mode
1. Each level ends when it find the same level begin.
2. Outline plugin determine the level when start of the line match the settings.eg: If the Level 1 setting is “LV1”
LV1 <– Match
LV1GHKDHEJHJKH <–Match
__LV1 <– Not Match(because the line start with other chars)
Hope this help you.kuo_cityMemberUse Find And Replace with Regular Expression
Find:^s*parameters.*$
Replace:;n.paramkuo_cityMember(1)About search speed in huge file.
The target file size is 100mb.(200,000 rows)When i search a single string(10 bytes, not regex),
emeditor take about 8 or 9 seconds to find the
string.(locate at 160,000 row).Compare to Notepad.
Although it cost long time to open the file,
but it take about 1 or 2 seconds to find the same string.(2)About script tag color syntax
this can show color syntax.(use vbscript color syntax)
this can not show color syntax.(should use csharp color syntax)
Thanks.
October 26, 2007 at 7:17 am in reply to: Non-english characters in scripts.( document.write("中文");) #4857kuo_cityMembertry to save your macro with UTF-8 with BOM
or use macro’s default encode UTF-16LE with BOM
I think this may solve your problem.kuo_cityMember1. Press Ctrl + K
2. Change to “Search” Tab
3. Change “Additional Lines to Search for Regular Expressions” greater than 0Maybe this can solve your problem.
kuo_cityMemberMaybe Workspace command can fit your need.
First select ‘Tools’ From menubar then select ‘All Commands’.
And then follow these steps(menu)
‘File’ -> ‘Workspace’ -> ‘Restore / Save Workspace’You can customize you menubar to add these commands.
This feature don’t offer in Free Edition.kuo_cityMemberMacro language may use javascript or vbscript etc..
Macro file extension with vb or vbee -> vbscript,
so use VB’s syntax 「’」 to comment a line
Macro file extension with js or jsee -> javascript,
so use Javascript’s syntax 「//」to comment a line
Is this what you want to know? - AuthorPosts