Forum Replies Created

Viewing 25 posts - 2,176 through 2,200 (of 3,662 total)
  • Author
    Posts
  • in reply to: HTML tags highlighting #8559
    Yutaka Emura
    Keymaster

    Hello abre,

    Thank you for trying EmEditor Professional!

    You can use Zen-coding macros and snippet
    http://www.emeditor.com/modules/mydownloads/singlefile.php?cid=18&lid=281
    to do the similar thing. Balance Tag (CTRL+SHIFT+D) will do this for you. Other than that, I don’t think there is an easy way to highlight, but this is definitely something I want to enhance in future versions.

    Please let me know if you have further questions.
    Thanks for your input!

    in reply to: Support for unicode line separator U+2028 #8554
    Yutaka Emura
    Keymaster

    Hello Klortho,

    I am sorry, but this is something that has to be address in major upgrade. I can’t support between minor upgrades. I might consider that in future major versions. Thanks!

    in reply to: full screen bug #8549
    Yutaka Emura
    Keymaster

    Thanks for trying EmEditor Professional v10 RC.
    This will be fixed in RC 9.
    Thank you!

    Yutaka Emura
    Keymaster

    Hello frode,

    Thank you for using EmEditor Professional!

    I understand, and I might consider that in the future versions.

    Thanks!

    in reply to: List of IP addresses. Help! #8546
    Yutaka Emura
    Keymaster

    Hello TransUA,

    You can write a macro to do this editing, but it is not very easy.
    You will need to write several lines of JavaScript code that manipulates strings and make loop to write manipulated strings.

    Please let me know if you have specific questions about macros.
    Thank you,

    in reply to: Post button super obscure #8545
    Yutaka Emura
    Keymaster

    Hello tungwaiyip,

    I realize it is very obscure. I might change that button design in the future. Thanks!

    Yutaka Emura
    Keymaster

    Hello tungwaiyip,

    In EmEditor Professional v10, there is a new check box called “Count Matches”.

    Also, in v8 or later, you can use the “Word Count” plug-in to count any words that match regular expressions.

    Please let me know if you have further questions. Thanks!

    Yutaka Emura
    Keymaster

    Hello roblumba,

    I removed older versions. Please download the latest version available in this forum. Currently, RC 8.

    Thank you.

    in reply to: Close all documents #8533
    Yutaka Emura
    Keymaster

    Hello derekcohen,

    Unfortunately, there is no direct command to close all documents and bring up a new untitled document.

    However, you can use this macro to do this:

    editor.ExecuteCommandByID(4384);
    editor.ExecuteCommandByID(4117);

    Please let me know if you have further questions. Thank you!

    in reply to: Very slow Update downloader #8532
    Yutaka Emura
    Keymaster

    Hello Flint,

    I haven’t seen the difference in speed between the updater download and the direct link. That is strange… I hope it happened only once.

    I noticed the icon is missing, and I will let the developer of the installer company know this bug.

    Thank you,

    in reply to: saving bookmarks #8531
    Yutaka Emura
    Keymaster

    Hello derekcohen,

    Thank you for using EmEditor Professional!

    To add the comment by ToadLoadin, the files of which you want to save the bookmarks must be within the recently used files. You might want to increase “Number of Recent Files” in the History tab of the Customize dialog box.

    Please let me know if you have further questions. Thank you,

    Yutaka Emura
    Keymaster

    Hello ADT,

    Thanks for using EmEditor Professional!

    If I understand your question correctly, “HTML Tidy” might work best for you. An example as to how you configure an external tool, please see the EmEditor Professional 9 feature page or http://www.emeditor.com/images/emeditor9_tool_prop_e.png

    Please let me know if you have further questions. Thank you!

    Yutaka Emura
    Keymaster

    Hello tungwaiyip,

    It should be very soon…

    Thanks!

    in reply to: How to set configuration properties in a macro #8517
    Yutaka Emura
    Keymaster

    Hello derekcohen,

    Yes, it is included in v10 RC.

    in reply to: EmEditor FREE #8512
    Yutaka Emura
    Keymaster

    Hi ZoNi,

    There is no “portable” version of EmEditor Free v6.00.4. I don’t know how you did it, but it is not supported by Emurasoft. Please refrain from letting others use that software. The official EmEditor Free is available in our website at http://www.emeditor.com/modules/download2/rewrite/tc_5.html

    Yutaka Emura
    Keymaster

    Hi Maria,

    I made the True Color work on Windows 2000 SP4 on the next version of v10 (RC 8). Although the toolbar on Windows 2000 may not look exactly same as the toolbar with the true alpha layer on Windows XP+, most people won’t see the difference. Please try when it becomes available.

    Thank you,

    in reply to: adding files to project #8503
    Yutaka Emura
    Keymaster

    Hello Derek,

    You can’t drag a tab to add the file to a project, but you can drag the EmEditor icon on the left top corner of the EmEditor window to the project.

    On the next RC version of EmEditor v10, I will correct the behavior of the tab icon.

    Thanks for your input!

    Yutaka Emura
    Keymaster

    Maria,

    I am sorry we didn’t support true color. We support Windows 2000 SP4, but that is when you use 16 color mode. True color is not supported on Windows 2000. Please continue using EmEditor with 16 color mode.

    If you have further questions, please let me know.

    Thank you,

    in reply to: Plugin to highlight duplicate lines – needed. #8490
    Yutaka Emura
    Keymaster

    Hi ginger,

    I am not sure exactly what you would like to do, but you can add “aaa” and “bbb” in the Highlight (1) tab of configuration properties, and specify different colors.

    Please let me know if you have further questions.
    Thank you,

    in reply to: Code scope highlighting/coloring #8488
    Yutaka Emura
    Keymaster

    Hello innerspir,

    Thanks for your comments! I might think about that in future versions. Thanks!

    in reply to: "Debug" of external tools #8486
    Yutaka Emura
    Keymaster

    Hello Matthias,

    Thank you for using EmEditor Professional.

    Unfortunately, there is no way to see how the commandline is resolved before the tool runs. I might consider that in future versions.

    Please let me know if you have further questions.
    Thank you,

    in reply to: Associate Macros w/ Solution #8485
    Yutaka Emura
    Keymaster

    Hello Matthias,

    Thank you for using EmEditor Professional.

    Unfortunately, there is no way to associate macros with solutions at the current version of EmEditor.

    Please let me know if you have further questions.
    Thank you,

    in reply to: Backup of sourcefiles #8469
    Yutaka Emura
    Keymaster

    You can write a macro to change backup settings.

    This is just an example how you write that macro:

    cfg = document.Config;
    cfg.Backup.SaveToFolder = true;
    cfg.Backup.Folder = "C:BackupFolder";
    cfg.Save();

    Please let me know if you have further questions.
    Thanks!

    in reply to: Backup of sourcefiles #8467
    Yutaka Emura
    Keymaster

    Hello Matthias,

    Thank you for using EmEditor!

    I might consider more sophisticated backup settings in future versions. Thank you!

    Yutaka Emura
    Keymaster

    Hello Maria,

    Maria, I am sorry I didn’t realize you were still using Windows 2000. I resumed support for Windows 2000 SP4 on RC3 because of some feedback from Windows 2000 users. However, the only 16 colors and True Color bitmaps are supported now. 256 color bitmaps are not support any more. There always have been issues developing 256 color bitmaps, and as we need to add more command buttons to toolbars, we dropped the 256 color support altogether.

    Please let me know if you have further questions.
    Thank you!

Viewing 25 posts - 2,176 through 2,200 (of 3,662 total)