Forum Replies Created

Viewing 25 posts - 2,426 through 2,450 (of 3,693 total)
  • Author
    Posts
  • in reply to: Unreason close Emeditor program #7894
    Yutaka Emura
    Keymaster

    Can you find any procedures that can reproduce the crash? With only the information you gave me, it is difficult to debug. Thanks!

    in reply to: syntax highlighting #7893
    Yutaka Emura
    Keymaster

    For 1. Parenthesis/brackets, you can specify “Parenthesis/brackets” in the “Specify Part” list in the Display tab of Configuration Properties.

    For 2. and 3., operators and functions are defined by one of Highlight (1) – (10). It depends on configuration you use, so you might want to check which Highlight (n) is used from the Highlight (1) tab of configuration properties.

    in reply to: about Find in Files #7892
    Yutaka Emura
    Keymaster

    r91085 wrote:
    In 9.06 version,I can’t serach multiple-line string in Find in Files function.

    why?

    In Find in Files, you cannot change the text box size, but you can enter multiple-line string by using ‘n’ escape sequences. Thanks!

    in reply to: using symbols #7883
    Yutaka Emura
    Keymaster

    chuckf wrote:
    I seem to be lost as to how to use the symbols. I’m looking for a way to select a function or variable and hit a key to jump to it’s definition.
    How is this done?
    Also, how is the Use Fixed Tag File used? When I selected it, I just get an error message that the file is not there.
    Maybe I’m not finding this info in the help…
    Thanks,
    chuckf

    Can you check the keyboard settings of the Projects plug-in? You don’t need to use the fixed tag file just to make the Symbol jump feature activate.

    in reply to: Convert tabs to spaces in TSV mode. #7881
    Yutaka Emura
    Keymaster

    chuckf wrote:
    Is there a way in TSV mode to convert tabs to spaces keeping the same alignment?
    Thanks,
    chuckf

    Unfortunately, there is no easy way to do this. You could write a macro to do just that. Thanks!

    in reply to: How can I have multiple instances of EmEditor open at once? #7879
    Yutaka Emura
    Keymaster

    chuckf wrote:
    How can I have multiple instances of EmEditor open at once?
    I still want the document tabs in each instance.
    Is this possible?
    Thanks,
    chuckf

    You can double-click on a tab, or drag a tab to outside of the window, so multiple windows will be displayed.

    in reply to: Unreason close Emeditor program #7877
    Yutaka Emura
    Keymaster

    netsking wrote:
    Hi there,

    After upgraded to 9.06 (32-bit), I often met this problem: Windows system closes the EmEditor program with no reason. Usually, it happened when I kept EmEditor open and working other program windows, like word, firefox, etc. My system is Vista Ultmate sp2

    Did anybody have the similar experience since upgrade 9.06?

    I would disable all plug-ins that EmEditor might be running with.

    in reply to: Shell extension for 32/64 bit applications #7873
    Yutaka Emura
    Keymaster

    Statler wrote:
    I’m planning to use EmEditor on Windows 7×64. As I’ve seen from the trial version on x86 EmEditor installs itself also as a shell extension into explorer. I assume that will be the same on x64 with Windows Explorer and that’s fine with me.
    On the other hand, most of the time I’m using a 32-bit Explorer replacement. Is the shell extension for EmEditor x64 compatible with 32-bit applications? Or is there another method to get the extension for both worlds, like installing 32-bit and 64-bit versions side by side?

    The shell extension for x64 version is only for x64 Explorer.

    You could install both 32-bit and 64-bit versions of EmEditor although not supported. The shortcut (on Start menu) to run EmEditor and the tray icon might be shared.

    Yutaka Emura
    Keymaster

    betaspin wrote:
    Dear Yutaka,

    Many thanks for the elegant macro. However, this is not what I was after: As I had mentioned earlier on, I can write a macro that copies selected portions of text b/n files; what I was after was a way of recording such a macro. I do not want to have to write a separate macro (or modify an existing one) each time I need to grab similarly shaped pieces of text from one file and put them in some different order into a different file. All that is required is the ability to record the keystrokes that switch between different files; I cannot get these keystrokes recorded with the current version of EmEditor (9.06, 64bit).

    A more detailed description of the “Automatic workspace problem” (again using 9.06 64bit, under Windows 7 Professional 64bit). I start with Customize -> Window -> Automatic workspace set to “None”, and a single empty file “Untitled”. I then switch Customize -> Window -> Automatic workspace to “Save and Restore”, and drop two files onto the EmEditor, these get opened. Then I close both files by pressing the “x” icons on the file tabs, this leaves a single open empty file “Untitled”, after which I close EmEditor. When I re-start EmEditor, it opens up not with an empty “Untitled” file, but with one of the two files that I had dropped onto it earlier on (the one that was closed last).

    Now, if I try to open additional files in EmEditor by executing “emeditor file1”, “emeditor file2”, etc, all of these files are opened in different tabs. If I close all of these tabs and then close EmEditor and start it again, I would expect to get a single empty file “Untitled”. However, EmEditor opens all files that I had closed previously in different tabs.

    Best wishes,
    betaspin

    Unfortunately, EmEditor cannot record such keystrokes involving multiple documents. EmEditor can record only simple keystrokes or commands. However, I might consider that in the future.

    OK. The difference is that I chose “Save, Restore and Keep Undo Information” in the Window tab of the Customize dialog while you chose “Save and Restore”. This is the same specification as before, but I might consider changing this behavior. Thanks for your inputs!

    Yutaka Emura
    Keymaster

    betaspin wrote:
    I guess that my first question was perhaps not phrased sufficiently clearly. I am much interested in a solution, so let me try to explain what I would like to do again.

    Imagine EmEditor is open with just two files, an empty one, and a second file containing the lines

    abcd
    efgh
    ijkl
    mnop

    I am in position 1 of line 1 of the first empty file and would like to record a macro that copies line by line the contents of the second file into the first one. The keystrokes I need to copy one line are as follows:

    Well, I cannot get EmEditor to record a macro that executes this sequence of keystrokes and any ideas as to how to do this would be much appreciated. I can write a macro that does all this, but I have to do this operation frequently with different chunks of data, sometimes lines and sometimes columns of numbers, and having to write a separate macro each time rather than simply record it would be a waste of time.

    Oh, and something else that I noticed very recently: When I have the “Automatic Workspace” set to any option that includes “Save and Restore”, and have two open files, if I close both files, then exit EmEditor, then start it again, both files are re-opened. I would expect EmEditor to open with a single empty file, as this was the last state in which it was before it was exited. The current behaviour appears to be inconsistent, and I wonder if this could be fixed at some moment.

    This macro copies a selection in doc1, and then paste it to doc2. I hope this will help you write more advanced macros.


    doc1 = editor.Documents.Item(1);
    doc2 = editor.Documents.Item(2);

    doc1.Activate();
    s = doc1.selection.Text;
    doc2.Activate();
    doc2.selection.Text = s;

    I cannot reproduce your workspace issue. Are you using the latest version of EmEditor Professional? If so, please write the procedure in details so I might be able to fix it. Thanks!

    in reply to: 9.06 registered install hangs #7867
    Yutaka Emura
    Keymaster

    The installer executable is ‘msiexec.exe’. Sometimes, the installer becomes slow especially when you have many applications installed on your PC. Please just wait when it seems hang, and then the installer should complete the install.

    Yutaka Emura
    Keymaster

    doggy8088 wrote:
    For my personal practice, I will left-click on the file with mouse in the Windows Explorer. Then right-click on the file. Then press a shortcut key such as “N” for “Notepad++”. Then the file will opened by Notepad++.

    I can’t find any way to configure EmEditor to assign a shortcut key on the item of the right-click context menu. Is it possible to assign a shortcut key by my self?

    Thanks for your comments. I might consider that feature in the future. Thanks!

    in reply to: A cursor positioning bug #7862
    Yutaka Emura
    Keymaster

    jimmy wrote:

    EmEditor Professional 9.06 (full-version/trial-version) is available for download. Updates from 9.05 include:
    – Fixed the issue of selecting text when a tab character is used with proportional fonts.

    Your effective reply is greatly appreciated. :-)

    Yes, this issue is fixed on v9.06. Please try it if you can. Thank you!

    in reply to: snippets bug #7860
    Yutaka Emura
    Keymaster

    robben wrote:
    When I edit html file with emeditor,I have some problem with auto-completion

    ${4:${SelText:default}}$0

    If I want an element nasted inside an element,I press “a” key,then “tab” until the cursor transfers to position 4,but since I enter “img” and then press “tab” key,it doesn’t autocomplete the label but transfers out of the element,and I have to move the cursor back to “img” then press tab again to autocomplete it.Is there any way to fix this problem?

    This is currently a specification of the Snippets plug-in. However, I will keep improving the plug-in in the future versions. Thanks for your comments!

    in reply to: wordcomplete error #7858
    Yutaka Emura
    Keymaster

    Please provide more information, such as EmEditor version, OS version, and how to reproduce this issue in details as much as possible.

    in reply to: Where to download EmEditor 9 x64 trial? #7855
    Yutaka Emura
    Keymaster

    doggy8088 wrote:
    Hi,

    I couldn’t find out the x64 version of EmEditor. Is it allow for trial?

    There is no trial version of the x64 version. The full-version is available for x64.

    Yutaka Emura
    Keymaster

    doggy8088 wrote:
    The “EmEditor” is not appear in my right-click context menu in Windows Explorer. How can I enable it and setup a shortcut key on it?

    By the way, I am using Windows 7 (x64) and installed x86 EmEditor.

    You should install the 64-bit version of EmEditor Professional for 64-bit OS.

    in reply to: v9.05 crashes all the time #7848
    Yutaka Emura
    Keymaster

    johnsan wrote:
    Hi there,

    Just updated my version of EmEditor to v9.05 and I literally can’t use it anymore :(
    It simply crashes when I launch it.

    I run Win XP (ver2002) with SP3 and all the latest updates.

    Is there any known issues with v9.05 or could it be related to my system ?

    That being said, I still love EmEditor, it’s a great software :).

    Cheers

    I suspect the file is corrupted. Where did you download the file from? Please make sure the downloaded file’s digital signature is correct. See http://www.emeditor.com/modules/download2/rewrite/tc_2.html

    in reply to: about WordComplete #7845
    Yutaka Emura
    Keymaster

    robben wrote:
    I think to WordComplete plug-ins should add customize configurations,the same as snippets’ configurations

    Did you check “Properties”? What do you want to customize in the WordComplete plug-in?

    in reply to: A cursor positioning bug #7840
    Yutaka Emura
    Keymaster

    jimmy wrote:
    Take the following text file for example, using Emeditor 9.05.
    http://cid-967fced3c841b69e.skydrive.live.com/self.aspx/.Public/test.txt

    1> Clicking at the end of the first line and holding on, then dragging to left, the words “dram” will disappear!
    I wonder whether it is a common problem.

    2> When clicking at the middle of a tab character, the cursor will appear at the beginning (see the 1st line) or sometimes the end (see the 2nd line) of that tab.

    Though small bugs, they diminish the joy of using Emeditor in slight and subtle ways. :-?

    You might want to change a font to a non-proportional font. I realize this is an issue when selecting a line contaning tabs.

    Thanks!

    in reply to: syntax highlighting with regular expressions: performance #7836
    Yutaka Emura
    Keymaster

    mldisibio wrote:
    Not sure if this is the best forum, since I am referring to regular expressions in syntax (esy) files, and not for Find and Replace.

    I’ve discovered that with more than two or three regular expressions for syntax highlighting, EmEditor performance suffers a noticeable hit. Keystrokes have a delay, other windows flicker, and the the CPU activity spikes to 80\% if the user is typing very fast (or backspaces through half a sentence) and the document has a couple hundred lines.

    I can post some specific examples, but I think this is a general issue. I read a few other posts along the same lines. But what really alerted my attention was skimming through several of the posted syntax files, and seeing that very few make use of regular expressions.

    EmEditor is a fantasitic software, so this is not a complaint. Rather I would like to know:
    1. Is there any tips or tricks to improve performance? (For example, I noticed that an RE that spans an entire line (^….something…$) does not have as bad a hit as expressions looking for in-line patterns.
    2. Should I attempt to accomplish this with a macro that is somehow on a timer, so that the highlight engine does not kick off on every keystroke?
    3. Is there a setting I am missing, similar to the AutoComplete configuration, where one can set a timer for scanning and refresh delays?

    Thanks!

    I don’t think there is much you can do about improving performance. I agree an regular expression spanning an entire line would help. Macors would not help. There is no settings to set a timer for scanning and refresh delays.

    However, if you feel delay with only two or three regular expressions, there must be something wrong. You might want to turn off all plug-ins such as WordComplete and Snippets. If you still have troubles, can you send me a sample file with highlight settings, so I will try to reproduce your issue. Please also let me know which OS you use, machine specs (CPU, speed, memory size). etc.

    Thank you!

    in reply to: What's the difference between EmEditor Professional & Standard? #7835
    Yutaka Emura
    Keymaster

    doggy8088 wrote:
    I was wanted to purchase EmEditor on RegNow.com. There are so many editions. Which should I choose?

    Definitely, EmEditor Professional. Please click “Buy EmEditor Professional Now!” in our web page at http://www.emeditor.com/modules/buy-now0/
    Thanks!

    in reply to: Upgrading from v8 Portable to v9 #7831
    Yutaka Emura
    Keymaster

    sashabe wrote:
    I have been using v8 of Emeditor Portable. Is it safe to upgrade from it to v9 Portable by just replacing over the contents of Emeditor program folder? Will all my settings stay in place and will there be conflicts between settings made in v8 and the new version of the app?
    Thank you!

    You can safely overwrite v9 files into v8 files. All settings should work fine. The only place you might want to check is the Highlight (2) tab of configuration properties, and then check all items in the “Bracket Pairs” list so you can use CTRL+] to jump the matching bracket.

    in reply to: snippets indentation bug and question #7827
    Yutaka Emura
    Keymaster

    dreftymac wrote:
    The bugs do seem to be fixed in the latest version. Thanks.

    Is there a way to get snippets triggers to work without the snippets sidebar open?

    Yes. You can check “Run Background” in the Snippets Properties.

    in reply to: snippets indentation bug and question #7823
    Yutaka Emura
    Keymaster

    dreftymac wrote:
    Yutaka,

    Thanks for your work on Emeditor 9. It looks like you have done a lot!

    Question: Is there a way to get the snippets plugin to work *without* having the snippets plugin side-pane open? Currently it seems like I cannot get snippets to trigger on a file unless I have the side panel open.

    Bug: There appears to be a bug in the handling of indentation for snippets. For example, if I use the following snippet:

    – firstname:${1:_blank_}
    lastname: $2
    body: |
    $3

    … and then trigger the snippet for insertion into the document, the typed-in value for “firstname” gets entered in correctly, but then the indentation of the following lines of the snippet gets changed. The lines are no longer indented with the same number of spaces anymore.

    —————————————————–
    NOTE: the exact text of the code is available below encoded in base64. This is offered so you can view the exact code unmodified by this forum software:

    ICAtIGZpcnN0bmFtZTokezE6X2JsYW5rX30KICAgIGxhc3RuYW1lOiAkMgogICAgYm9keTogfCAKICAgICAgICAkMw==

    Some indentation bugs were fixed in v9.0x. Did you try the latest version 9.04?

Viewing 25 posts - 2,426 through 2,450 (of 3,693 total)