Forum Replies Created

Viewing 25 posts - 1,101 through 1,125 (of 3,680 total)
  • Author
    Posts
  • in reply to: Undo and memory requirements #20846
    Yutaka Emura
    Keymaster

    Hello,

    I changed the default value to 90%, and will clarify the Help.

    Thanks!

    in reply to: Filter line count #20843
    Yutaka Emura
    Keymaster

    Hello,

    I reproduced this issue, and it will be fixed on the next beta version.

    Thanks!

    in reply to: Exported filters containing TAB cannot be re-imported #20842
    Yutaka Emura
    Keymaster

    Hello LifeTimer,

    I reproduced the issue. This will be fixed on the next beta version.

    Thank you!

    in reply to: Undo and memory requirements #20841
    Yutaka Emura
    Keymaster

    I couldn’t reproduce the issue here. Can you email me a sample file that I can reproduce the issue? (tech @ emurasoft.com)

    Can you check the Maximum Memory Size in the Advanced tab of the Customize dialog box? The default value is 80%. You can also check the “Percentage of Physical Memory in Use” in the Status tab of the Customize dialog box. This “Undo will not be available…” message appears when the percentage of physical memory in use exceeds the specified percentage (80% by default).

    If the message appears because the memory is actually low, you can set the “Prompt when No Undo Information is Available” or “Always Discard Lengthy Undo Information to Accelerate” check box in the Edit tab of the Customize dialog box.

    Thanks,

    in reply to: Quick Launch opens only in primary window? #20830
    Yutaka Emura
    Keymaster

    Hello Paul,

    I am not sure why you think it’s a bug, but the Quick Launch window’s position is always remembered as relative to the screen position. Do you want it to be remembered as the relative position to the EmEditor main window?

    Thanks,

    in reply to: Macro scripting import/export of filter settings? #20829
    Yutaka Emura
    Keymaster

    Hello LifeTimer,

    I released v16.0.0 beta 1 today. New Filter and Filters objects were introduced while ExportFilter and ImportFilter methods are obsolete now. Please refer to http://www.emeditor.org/en/macro_filters_export.html and http://www.emeditor.org/en/macro_filters_import.html for examples of exporting and importing filters.

    Thanks!

    in reply to: Untitled name uniqueness #20828
    Yutaka Emura
    Keymaster

    Hello jic,

    EmEditor v16.0.0 beta 1 now includes this feature (Untitled-1, Untitled-2, …).

    Thanks!

    in reply to: Creating embedded links in a text document #20822
    Yutaka Emura
    Keymaster

    Hello,

    You will have to type the file path ( line number ) like this format:

    E:\Test\filename.txt(1):

    and then you can run the macro above.

    You can’t choose the file automatically.

    Thanks,

    in reply to: Creating embedded links in a text document #20820
    Yutaka Emura
    Keymaster

    Hello,

    Please use the macro:

    document.HighlightTag = true;

    Thanks!

    Yutaka Emura
    Keymaster

    Hello LifeTimer,

    Can you please let me know all the settings you used for the External Tool Properties? If the Output is “Replace Document”, “Replace Selection”, “Insert Before Selection”, or “Insert After Selection”, the cursor position can be adjusted after the output is redirected to the editor.

    I would appreciate if you could send me an EXE file that you used as a “terminal”, and a sample file you opened with EmEditor, and the screenshot of the External Tool Properties, so I can reproduce the issue. You can email them after zipped to tech @ emurasoft.com.

    Thank you,

    Yutaka Emura
    Keymaster

    Hello LifeTimer,

    No, I have not tested yet. I don’t have Python installed on my computer, so it will take some time to test it.

    Can you reproduce the problem with another external tool? It might be an issue only specific to Python. I am not sure what your Python script does, but if your Python script expects any keyboard inputs, then I think EmEditor will have to give up keyboard shortcuts. Thus, this is an expected behavior.

    By the way, I would appreciate if you could make a test case as simple as possible.

    Thanks!

    Yutaka Emura
    Keymaster

    Hello,

    I have reproduce the issue, and it will be fixed on the next beta version.

    Thanks!

    in reply to: How re-open files after EmEditor re-launch? #20808
    Yutaka Emura
    Keymaster

    Hello Just,

    Are you using the latest version of EmEditor? You should see the Start Window where you can click the Restore Previous Workspace button.

    If this doesn’t work, please make sure the “Save Only” is selected in Automatic Workspace drop-down list in the Window tab of the Customize dialog box. You can also select “Save, Restore and Keep Undo Information” in the same drop-down list if you prefer.

    Thanks,

    in reply to: shortcut for running an external program #20807
    Yutaka Emura
    Keymaster

    Hello Just,

    1) You can assign a shortcut to an external tool. Please go to Keymap on the Help, or configuration properties -> Keyboard tab, and select an external tool to assign a shortcut.

    2) You can’t upload images to the forum, but you can upload to another website and link to the external image using the IMG tag.

    Thanks,

    Yutaka Emura
    Keymaster

    Hi LifeTimer,

    What is the external tool that causes the problem? Is it a console application? Can you let me know an example that causes the issue?

    Does changing the external tool options (for example, “Use Output Bar”) help?

    Thank you,

    in reply to: Inconsistent Start Window behavior #20801
    Yutaka Emura
    Keymaster

    Hello Paul,

    As for 2), I will fix ths issue on the next version.

    Thank you,

    in reply to: Macro scripting import/export of filter settings? #20795
    Yutaka Emura
    Keymaster

    Hello,

    To delete a file, you can call:

    function DeleteFile(filespec)
    {
       var fso;
       fso = new ActiveXObject("Scripting.FileSystemObject");
       fso.DeleteFile(filespec);
    }
    

    See: https://msdn.microsoft.com/en-us/library/thx0f315.aspx

    However, I will add an ability to query the filter items in macros.

    Thanks,

    in reply to: Macro scripting import/export of filter settings? #20788
    Yutaka Emura
    Keymaster

    ExportFilter shouldn’t overwrite an existing file if the filter is empty, instead it should return an error. I will fix ExportFilter on the next version. I also might consider adding more methods or properties to inspect the filter items.

    Thanks!

    in reply to: JSON support for macros would be extremely useful #20787
    Yutaka Emura
    Keymaster

    I added information about JSON to the History page of the Help, the latest feature page of the website, and I posted a new blog about the feature.

    As for email notifications, I didn’t change anything, but we constantly update WordPress, so it is possible that there might have been glitches in some version of WordPress.

    Thanks!

    in reply to: Macro scripting import/export of filter settings? #20780
    Yutaka Emura
    Keymaster

    Hello LifeTimer,

    It will take some time until we can release a new version, so I built a test version for you:

    Here is an example:

    sTsvFile = "E:\\Test\\filter.tsv";
    
    // export the current filter to a TSV file.
    document.ExportFilter( sTsvFile );
    
    // import the TSV file and apply the filter
    nCount = document.ImportFilter( sTsvFile );
    
    Yutaka Emura
    Keymaster

    EmEditor v15.9.0 supports the JSON object. Here is an example:

    var text = '{ "employees" : [' +
     '{ "firstName":"John" , "lastName":"Doe" },' +
     '{ "firstName":"Anna" , "lastName":"Smith" },' +
     '{ "firstName":"Peter" , "lastName":"Jones" } ]}';
    
    var obj = JSON.parse(text);
    
    alert( obj.employees[1].firstName + " " + obj.employees[1].lastName );
    

    I hope this helps. Thanks for your inputs!

    in reply to: JSON support for macros would be extremely useful #20778
    Yutaka Emura
    Keymaster

    Hello,

    Actually, the JSON object is already defined on EmEditor v15.9.0.

    Can you try on your computer, and see if there any issues?

    Thanks!

    in reply to: Go to matching bracket ( brace, parenthesis ) #20771
    Yutaka Emura
    Keymaster

    Hello,

    You can go to configuration properties, the Display tab, select Matched parentheses/brackets, and then change the text color or background color.

    I am not sure why you didn’t receive notifications. I would subscribe the RSS feeds for the entire forums.

    Thank you,

    in reply to: Shortcut for editing current cell in Cell Selection Mode? #20770
    Yutaka Emura
    Keymaster

    Hello,

    You can use the ENTER key to edit the current cell, but you can also assign the “Edit Cell” command to F2. The F2 key had been assigned to another command, so I didn’t want to change the current key assignments.

    Thank you,

    in reply to: Low-resolution/color taskbar icon? #20763
    Yutaka Emura
    Keymaster

    After unpin the EmEditor icon from the Taskbar, can you right-click on the EmEditor icon on the Start menu, and add it to the Taskbar? If you are using Windows 10, you can right-click the EmEditor icon on the Start menu, click “More”, and then “Pin to taskbar”.

    Thank you,

Viewing 25 posts - 1,101 through 1,125 (of 3,680 total)