Forum Replies Created

Viewing 25 posts - 2,101 through 2,125 (of 3,662 total)
  • Author
    Posts
  • in reply to: Multiple Working spaces #8796
    Yutaka Emura
    Keymaster

    Hi CrashNBurn,

    Thanks for your inputs! If you need to use multiple workspaces, you might consider using the Projects plug-in. This plug-in was developed for those developers like you in mind.

    Thanks!

    in reply to: How to define how many space a TAB will occupy? #8795
    Yutaka Emura
    Keymaster

    Hi hoody,

    Can you check Configuration Properties, General tab, and Tab/Indent button?

    Thanks!

    in reply to: Is it possible to fine the Lf and change the space #8790
    Yutaka Emura
    Keymaster

    Hi

    You might want to use “Replace in Files” dialog, find “n”, and replace with a space while “Use Regular Expressions” is checked. Click “>” button on the right side of the File Types drop-down list, and select “Current File”.

    See http://www.emeditor.com/help/howto/search/search_nl.htm for details as to how you specify new lines.

    in reply to: TSV mode format problem – ver. 10.0.0 32 bit #8788
    Yutaka Emura
    Keymaster

    Hello spudly,

    Thank you for using EmEditor Professional!

    I reproduced the problem with a large file. Since it takes long time to adjust a large file, EmEditor did not automatically adjust columns when it opens a large file. On the next minor version, EmEditor will look on the first 100000 lines to adjust columns.

    Please make sure “Detect TSV” is checked in the File tab of configuration properties. If this is checked for the opened file configuration, EmEditor should always detect a TSV file if a file is properly separated by tabs.

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

    in reply to: 'Home' button to start of line #8785
    Yutaka Emura
    Keymaster

    Hello QiaoJiao,

    Please look for “Home Extend” or “Logical Home Extend” command for the HOME+SHIFT shortcut key assignment.

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

    in reply to: 'Home' button to start of line #8782
    Yutaka Emura
    Keymaster

    Hello QiaoJiao,

    By default, “Home or Start of Text” command is assigned to the HOME key, and ALT+HOME is assigned as “Logical Home”. You can change these shortcut assignments from the Keyboard Map on the Help menu, or the Keyboard tab of configuration properties.

    Yutaka Emura
    Keymaster

    Hello hzy123,

    You should set 0 to the “Additional Lines to Search for Regular Expressions” text box.

    If the search is still slow even if you set to 0, please let me know. Thanks!

    Yutaka Emura
    Keymaster

    Hi hzy123,

    Thanks for using EmEditor Professional!

    What do you specify in the “Additional Lines to Search for Regular Expressions text box” text box and “Regular Expressions Can Match New Line Characters” check box in the Search tab of the Customize dialog box?

    Thanks!

    in reply to: Custom Macro Icon #8776
    Yutaka Emura
    Keymaster

    Hi Cirillo,

    Thanks for using EmEditor Professional!

    Yes, a macro has to be included in My Macros in order for it to be appeared in the main toolbar. You can hide the Macros toolbar, and show selected macro buttons on the main toolbar.

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

    in reply to: Enhancement to the explorer plugin #8760
    Yutaka Emura
    Keymaster

    I understand these are important improvements. I might consider these in future verisons.
    Thank you!

    in reply to: XML syntax incorrectly highlights multiline comments #8757
    Yutaka Emura
    Keymaster

    Hi maxim_2004,

    Can you email me your sample file (as an attachment after zipped)? My email is [email protected] .

    Thanks!

    in reply to: open next file in the folder #8747
    Yutaka Emura
    Keymaster

    No, it doesn’t work with previous text file.

    in reply to: open next file in the folder #8744
    Yutaka Emura
    Keymaster

    You can assign any shortcut key from the configuration properties > Keyboard tab. You can select this macro in the My Macros category, and then assign a new key.

    in reply to: open next file in the folder #8742
    Yutaka Emura
    Keymaster

    This is an example of the macro that opens the next .txt file in the same folder as the opened file.


    // This macro opens the next ".txt" file in the current folder.
    //
    sFolder = document.Path;
    if( sFolder != "" ){
    fso = new ActiveXObject("Scripting.FileSystemObject");
    f = fso.GetFolder(sFolder);
    fc = new Enumerator(f.files);
    sItem = "";
    for (; !fc.atEnd(); fc.moveNext()) {
    if( fc.item().name == document.Name ) {
    for( fc.moveNext(); !fc.atEnd(); fc.moveNext()) {
    n = fc.item().name.lastIndexOf(".");
    if( n != -1 ){
    if( fc.item().name.slice( n ) == ".txt" ){
    sPath = sFolder + "" + fc.item().name;
    try {
    editor.OpenFile( sPath );
    }
    catch(e){
    }
    break;
    }
    }
    }
    break;
    }
    }
    }

    in reply to: no tabs #8740
    Yutaka Emura
    Keymaster

    Hi Maria,

    To enable or disable the Tabs, you can use the EnableTab property of Editor object.


    editor.EnableTab = true;

    To find if OpenDocuments.dll is checked, please use the following code:


    function IsPluginChecked( sPluginName )
    {
    for( nID = 5632; nID <= 5632 + 255; nID++ ){
    str = editor.QueryStringbyID( nID );
    if( str == sPluginName ){
    nStatus = editor.QueryStatusByID( nID );
    if( nStatus & eeStatusLatched ) {
    return true;
    }
    break;
    }
    }
    return false;
    }

    alert( IsPluginChecked( "OpenDocuments.dll" ) );

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

    in reply to: open next file in the folder #8738
    Yutaka Emura
    Keymaster

    Hi user,

    You could write a macro to view the next text file in the current folder by pressing a shortcut key.

    in reply to: organize text #8737
    Yutaka Emura
    Keymaster

    Hi user,

    This is an example of a JavaScript macro:


    sText = document.selection.Text;
    if( sText != "" ) {
    menu = CreatePopupMenu();
    nCount = editor.Documents.Count;
    for( i = 1; i <= nCount; i++ ){
    doc = editor.Documents.Item( i );
    if( doc != document ){
    menu.Add( doc.FullName, i );
    }
    }

    result = menu.Track( 0 );
    if( result != 0 ) {
    docOrg = document;
    doc = editor.Documents.Item( result );
    doc.Activate();
    document.selection.EndOfDocument();
    document.selection.Text = sText;
    docOrg.Activate();
    document.selection.Delete();
    }
    }

    in reply to: Hunspell Engine #8734
    Yutaka Emura
    Keymaster

    Hi Cirillo,

    Sure. I will try to use newer version but I prefer doing on major version upgrade. What are the difference between 1.2.9 and 1.2.11?

    I cannot support if you replace the DLL, and I don’t know if it is different. If you want, you can try it at your own risk.

    in reply to: Improving Auto-complete brackets/quotation marks #8732
    Yutaka Emura
    Keymaster

    Hi petx,

    I will consider your inputs in future versions.
    Thanks for your inputs!

    in reply to: emedtray.exe and memory #8730
    Yutaka Emura
    Keymaster

    Hi user,

    Thanks for your comments! I might consider that in future versions.
    If you are using Windows 7, you might not need the Tray Icon since the Task Bar EmEditor icon includes the Task menus that include most of the same menus as the Tray Icon.

    in reply to: pc crash #8728
    Yutaka Emura
    Keymaster

    Hi user,

    That is exactly the new feature of EmEditor v10. It should restore the previous workspace even with unsaved files after the application crash.

    Thanks for using EmEditor!

    in reply to: XML syntax incorrectly highlights multiline comments #8727
    Yutaka Emura
    Keymaster

    No, I cannot reproduce this issue. Did you try on v10?
    I would suggest you to reset all configurations, and can you try again?

    in reply to: no tabs #8725
    Yutaka Emura
    Keymaster

    Hi Derek,

    Unfortunately not.
    Thank you for using EmEditor!

    in reply to: Close documents inconsistent behaviour #8722
    Yutaka Emura
    Keymaster

    Hello derekcohen,

    I will fix this issue.
    Thank you!

    in reply to: Ctrl+F3 non-intuitive work #8719
    Yutaka Emura
    Keymaster

    Hello Flint,

    Thanks for your comments. Some people don’t want to change the text at all, so this needs to be optional. I might think about that in future versions.

Viewing 25 posts - 2,101 through 2,125 (of 3,662 total)