Forum Replies Created
-
AuthorPosts
-
Yutaka Emura
KeymasterDeipotent wrote:
A couple of years ago you offered a 50\% discount to members of donationcoder.com forum. Do you have any promotion like this planned or a future bisdujour.com discount ?Sorry, we don’t have that kind of discount any more, and I don’t have any plans to offer that kind of discount in the future.
Yutaka Emura
Keymasterfmdevelope wrote:
Since installing EmEditor 7 and the EmEditor Sidebar Gadget (have since removed -because this behavior started after it was installed- but still get the error) on Vista (RTM and SP1), each time I attempt to install it tells me that ALL explorer processes must be closed.If I force quit all explorer processes then the install works fine. If I don’t close all explorer.exe processes then I can not install.
Any suggestions?
I realize this warning appears, but you can safely ignore this prompt. The file emedshl.dll tries to register to Explorer, but this file does not need to be updated every time. So you can ignore this.
Yutaka Emura
Keymastersuli2921 wrote:
Thank you, this is very helpful.For Each doc In editor.Documents
doc.encoding = eeEncodingUTF8
doc.UnicodeSignature = False
editor.ExecuteCommandByID 4107
NextBut you have to activate each document first.
For Each doc In editor.Documents
doc.Activate
doc.encoding = eeEncodingUTF8
doc.UnicodeSignature = False
editor.ExecuteCommandByID 4107
Next
Yutaka Emura
Keymasterprashob12 wrote:
Hi,
I already put this request in the forum before also for Replacment options in all the opened Documents.
I put this request when editor was 7.005,
Now its 7.01 and still i cannot find that option implimented, can i see this option in the future versions.
Your Editor is anyways a Superb one!!!Thanks in advance
PrashobMinor updates are usually bug fixes and do not contain feature enhancements. One of the reasons is that language pack should not need upgrades, and I don’t want to create more bugs in minor updates.
Your suggestion is probably implemented in the next major upgrade.
Yutaka Emura
Keymastershepik wrote:
and another question (:Can I somehow force “Symbol List” tab to use ctags file created by myself (or, may be, simply overwrite it’s ctags file by mine)?
The problem arised due to this: I have a big project (1000+ files), and it’s more useful to handle files using stand-alone file browser, but not project plugin.
But functionality of “symbol list” is awesome, and i would have been really glad to use this feature.Or there is another solution, may be.
What would you recommend?I will consider that (force to use existing ctags file) in future versions. Thanks!
Yutaka Emura
Keymastersuli2921 wrote:
I want to save all open files in LF Only (UNIX) return method. here’s my code:For Each doc In editor.Documents
doc.encoding = eeEncodingUTF8
doc.UnicodeSignature = False
doc.newline = ?
Nextwhat’s the value for LF Only (UNIX)?
You will need to use “Save Returns as LF only” command, so you will need to activate each document, and then use
editor.ExecuteCommandByID(4107);Yutaka Emura
Keymastershepik wrote:
Now (i’m using 7.00.9) i can select file in projects plugin bar, and selected file will be highlighted. But when i switch to a tab with another file, my selection in projects plugin bar remains the same. I think, that current file must be selected there, and highlighted.Also, i can’t see which of my projects files are opened, and which ‘re not.
Yutaka, can you implement these features?
Yes, I will consider that in future versions.
Yutaka Emura
Keymasterowilsky wrote:
So, if I understand you right, this is a limitation of EmEditor, not of RegEx, because PCRE support the (?s) modifier.Could this be changed in upcoming versions of EmEditor or will this slow down highlighting?
This will slow down highlighting, and will require more memory per line. That is why I just cannot implement it near future.
Yutaka Emura
Keymasterowilsky wrote:
Hi,I want to highlight an expression between and . Works fine of BEGIN and END tag is on the same line, but not if they are on diffferent lines. I tried the regex modifier (?s) which should include CR/LF into the dot operator, but had no success.
My regex:
(?s).+?Any ideas how I can highlight it if BEGIN and END are not on the same line?
Thanks,
OliverThis is the specification — regular expressions can highlight only in a single line.
Yutaka Emura
Keymasterjackrabbit wrote:
Here is an example of inline command.r1 n1 gnd 10K ; resistor divider 1
r2 vdd n1 10k ; resistor divider 2Here ; is used as inline comment. It comments everything after it.
Please consider adding this feature.
Thanks.
Thanks for your explanation. In this case, inline comment is the same as line comment.
Yutaka Emura
Keymasterz3phir wrote:
hiit is posible to import a folder with subfolders files etc in to a project ?
Not currently, but I consider adding that feature in the future. Thanks!
Yutaka Emura
Keymastertslim wrote:
Hi,
I am evaluating the latest ver of EmEditor 7.0.0.9
I am running English WinXP+Sp3, non-unicode language is set to “Chinese PRC”Question1:
How do I configure EmEditor such that it automatically open a text file under “English” encoding if the text file contains only English texts (no Chinese or other language character) and automatically open text file under a unicode encoding if a text file contains mix languages content?Question2:
What is “Configured Encoding” under File->Saving->Encoding setup?There is no “English” encoding, but there is Western European (iso-8859-1) encoding. You can check “Detect All” when you open a file, or check “Detect All” in the File tab of Configuration Properties. However, nothing is perfect to detect the correct encoding of files you open, so you might need to “Reload” with the correct encoding after you open files, by double-clicking the encoding in the status bar.
“Configured Encoding” is the encoding used to open the file. It should be labeled “Same Encoding”
Yutaka Emura
KeymasterFlint wrote:
Now Opera 9.5 was finally released, with all its advantages and disadvantages. One of the latter is complete removing file extensions from the cached files. :-( Now when I try to view source HTML code (of course, I’m using EmEditor, not Opera’s internal viewer), the file is opened just as Text, not as HTML, because the file is named something like opr000A3, and no extension at all. :-(Unfortunately, Opera men seem to put it like the greatest super-convenient feature, though it is obviously not (at least, for me and for many other users complaining at that from the very first alphas), and they strongly refuse to return extensions back. Hence, my suggestion: what if EmEditor allowed special association rules, like e.g. “All files from the following folder are HTMLs”?
Just now I found that I knew very little about EE possibilities: I have just set /c HTML command line parameter for opening source code from Opera, and all this works fine! For the nth time I discover what a great program EE is! :-)Anyway, extended association rules still may be very useful. For example, to set specific syntax for Makefile, or to README files (that are also without extensions and therefore cannot be distinguished from each other).
I am glad you figured out. Also, you can use “EMEDHTML.EXE”, which is equivalent to emeditor.exe /c HTML.
Yutaka Emura
Keymasterjackrabbit wrote:
Hi All,I know how to setup comment for the whole line. If I want a inline comment, how can I set it? Also, if I have more than 2 comments, how can I set it up?
I am tried to setup a configuration for SPICE file (a circuit simulation file). SPICE file has three types of commands.
* line comment
$ line comment
; inline comment, it can insert a line and comments everything after it.How to set this up?
Thanks.
Can you give me more examples of the inline comment?
Currently, there is no way to setup more than two line comments in EmEditor.
Yutaka Emura
Keymasteranicom wrote:
EmEditor version: 7.00.9When creating a new document, I often create a blank file in a certain folder and edit it in EmEditor.
With ‘Detect All’ enabled in the File tab of Properties dialog, EmEditor always opens a blank(0 byte) file as ‘UTF-16LE without Signature’.
I think it will be better if it follows the encoding settings of ‘New Files’ or there are separate encoding settings for blank files.When the file size is zero, the encoding should be one specified in the “Opening Encoding” dropdown list in the File tab of the configuration Properties. I will fix that by the next minor version. Thanks!
Yutaka Emura
KeymasterLTT wrote:
Hi,I customized the background color for Comments. And I set the background color for “Returns, tabs, EOF” to Transparent. However, the background color of the spaces in the comments still show as white. Can this be improved somehow?
This should be fixed. Please try 7.01 RC1: /modules/newbb/viewtopic.php?topic_id=716&forum=12
Yutaka Emura
KeymasterFlint wrote:
Here is the Perl code:print "Hello #World!n" if ($something);
The “if ($something);” part is highlighted as comment, except for highlighting of the keyword “if” and special sign “$” takes precedence here. That is, highlighted line looks like following:
print "Hello #World!n" if ($something);
If I remove the sign “#” (a line comment character in Perl) from the string, the highlighting returns to normal:
print "Hello World!n" if ($something);
EmEditor 7.00.9 Pro, WinXP SP3.
This is strange. I cannot reproduce your problem.
Can you try resettings all configurations or Perl configuration?Yutaka Emura
KeymasterEmUser wrote:
emedtray can make our text modify work easy.
Would you mind to add a function for emedtray?
It’s clear recent files menu, it can clear my recent files history. So other user on my computer can’t see my work.and
When I moved my USB storage, emedtray still list my files and show the file can find. Can emedtray don’t show the files on USB storage?thanks!
You can clear file history from the EmEditor main window, Customize, History tab, and then Clear History button.
Yutaka Emura
KeymasterYou are welcome!
Yutaka Emura
Keymasteryaot wrote:
(1) First, I click the keyboard “ctrl + F” to find the keyword “on”, then all the occurrence of the “on” will be highlighted. when we click the “F3”, it would jump to the next occurrence of the “on”;
(2) then I execute a macro, which contains the following code
document.selection.Find(“off”, eeFindNext | eeFindReplaceCase);
then all the occurrence of the “off” will be highlighted.
but this time, when we click the “F3” in order to jump to the next occurrence of the “off”, the “on” is highlighted again, then the next “on” is selected.
(3) How this happens, it seems the macro function “Find” doesn’t equal to the “ctrl + F”, how can i avoid it?
please help me, thank you very muchI will look into the source code when I have a time. Thanks!
Yutaka Emura
Keymasterfilepillow wrote:
Hi there,I’ve recently started to use EmEditor and quite happy so far with it.
Its pretty cool that it can load very large files very quickly.
I have some suggestions here and was wondering if the following enhancements could be considered in the future.1) Allow bookmarks to be customized. .
Users can set bookmark colors+icons and annotate each bookmark with some description or comments.
The bookmarks can then be probably saved into a separate file residing together with the original.
When the mouse hovers over the bookmarks, we can then see the description in the tool tip.This feature is definitely not for the EmEditor core, and it has to be done by a plug-in. I might have to add new APIs to make this happen. Let me see if I can do that…
2) Allow copying of all the lines being bookmarked. .
This can probably open in a new tab like the find in files with the hyperlinks back to the original document.You can write a macro to copy all lines with bookmarks.
3) Additional Find dialog feature
Allow Find dialog to search for all occurrence and open the list in a new tab like the find in files with the hyperlinks back to the original document.You can use the Search plug-in (you can find it within the default install).
4) new macro object for Find in Files.
Allow access to the file in files method in macros.Use editor.FindInFiles method.
5) Support for VB like syntax?
Begin-end statements collapsing and stuff.You can customize the Outline plug-in for your situation.
Sorry if any of these is already in EmEditor.
Thanks and keep up the good work! :-DYou are welcome!
Yutaka Emura
Keymasterbdj wrote:
How do I change or modify the tab and space marks?The default is extremely bright and overpowers the whole document.
http://img77.imageshack.us/my.php?image=emds7.jpg
I would like to do something similar to this.
http://img79.imageshack.us/my.php?image=epdp7.jpgIf anyone can help I would appreciate it.
Currently, you cannot modify those marks. I might consider options to customize those marks in future versions. Thanks!
Yutaka Emura
Keymastererdem_ustu wrote:
I think solved.
if I write .do(w+?) and replace .do 1 it seems ok.is it right?
another problem in this situation
“.jpg-“
“.html-“
“.js-“
“.htm-“
is it possible
“.jpg -“
“.html -“
“.js -“
best regardsFind:
.(w+?)-Replace:
.1 –For examples, please see the Help.
/help/howto/search/search_regexp_syntax.htm
/help/faq/search/search_reg_exp_ex.htmYutaka Emura
Keymastersort wrote:
(To answer your q’s: The .esy is my own PHP highlighter. And then, viewing any .php file)I have Em installed on my desktop and laptop. The copy on laptop is broken, and it is using settings/highlighting exported from the desktop version. It seemed to break when I imported the highlighting file. To test, I imported the same settings onto a third computer and it did not break.
Now, the odd part is if I run EmEditor on my desktop from the laptop’s install directory on a network share, I will see broken highlighting. Essentially, I can run two emeditors side by side with the same file open and see both highlighted differently.
Since EmEditor loads settings from the registry, both are operating with the same configuration set. The differences are: files in the install directory, install location, and Em version. Though with quick tests, changing the install directory and installing new versions doesn’t help. I will try a clean install of the latest version and see how that goes. But the question remains, what is going on? :)
Please make sure both EmEditor use the Registry by looking at the About dialog box on the Help menu.
Please email me your esy file (after zipped) at tech@emurasoft.com. I will try to reproduce your issue. Thanks!
Yutaka Emura
Keymastererdem_ustu wrote:
hi,
I have lots of logs file.I want to find/replace but have a lot of criteria.
for example find .doid replace do id
find .dotb_id replace do tb_id
find .doCOLUMN replace .do COLUMN……is it possible to find .do* replace .do *(put one space .do and any words)
Note: * means any words or charactersI found some link (/modules/newbb/viewtopic.php?topic_id=675&forum=19 ) but I don’t know which howmany kinds of word/characters
please help
Check “Use Regular Expressions” in the Replace dialog box, and then
Find:
do(w+?)Replace with:
do 1Are you happy with this? :-)
-
AuthorPosts