Forum Replies Created
- AuthorPosts
- Yutaka EmuraKeymaster
No, the link does not work from my environment.
June 3, 2022 at 10:29 am in reply to: “Count Matches” display incorrectly in the split window. #28251Yutaka EmuraKeymasterI’ve reproduced this issue, and it will be fixed on the next version. Thank you.
June 2, 2022 at 1:51 pm in reply to: “Count Matches” display incorrectly in the split window. #28242Yutaka EmuraKeymasterWhich version of EmEditor are you using? The latest version is v21.7.911.
If the Search All Documents in the Group option is set in the Find dialog box, please clear it.Yutaka EmuraKeymasterYou can drag and drop selected cells if you drag the border of the selection.
If you would like to use a macro, please see:Yutaka EmuraKeymasterThere are commands called “Insert Line Before”, “Insert Line After”, “Insert Column Left”, and “Insert Column Right” commands.
Yutaka EmuraKeymasterYou can record these commands to macros, and combine them to one macro. These commands remove two or more spaces.
Yutaka EmuraKeymasterDid you select any item in the menu to paste the selected item and all above items?
Yutaka EmuraKeymasterAs for the delimiter in the macro, you can change the delimiter at the first line of the macro.
Yutaka EmuraKeymasterCan you please write an example to explain the issue?
Thanks,Yutaka EmuraKeymasterHello,
You can right-click on the list box to show the menu that includes “Top” and “Bottom”.
Yutaka EmuraKeymasterYou can write a macro to do this:
sDelimiter = "|"; // delimiter to separate clipboard items menu = CreatePopupMenu(); i = 0; do { str = clipboardData.getData("text", i); if( str.length == 0 ) break; str = str.substr( 0, 40 ) menu.Add( str, i + 100 ); i++; } while( 1 ); result = menu.Track( 0 ); if( result != 0 ) { iMax = result - 100; str = ""; for( i = 0; i <= iMax; ++i ) { if( str.length != 0 ) { str += sDelimiter; } str += clipboardData.getData("text", i); } document.write( str ); }
Please see getData Method of ClipboardData:
http://www.emeditor.org/en/macro_clipboarddata_getdata.htmlYutaka EmuraKeymasterIf the Auto-Complete Brackets/Quotation Marks option is set, you can simply type [.
However, I know you want to write a macro to process multiple selection scenarios. Here is an example:
sInsertBefore = "["; sInsertAfter = "]"; var axT = []; var ayT = []; var axB = []; var ayB = []; Redraw = false; CombineHistory = true; nCount = document.selection.Count; // retrieves the number of selections for( i = 1; i <= nCount; ++i ) { // loop through multiple selections x = document.selection.GetTopPointX( eePosLogical, i ); // retrieve x of the left side of each selection axT.push( x ); y = document.selection.GetTopPointY( eePosLogical, i ); // retrieve y of the left side of each selection ayT.push( y ); x = document.selection.GetBottomPointX( eePosLogical, i ); // retrieve x of the right side of each selection axB.push( x ); y = document.selection.GetBottomPointY( eePosLogical, i ); // retrieve y of the right side of each selection ayB.push( y ); } for( i = nCount - 1; i >= 0; --i ) { document.selection.SetActivePoint( eePosLogical, axB[i], ayB[i] ); // set the cursor to the right side of each selection document.selection.Text = sInsertAfter; // insert ']' document.selection.SetActivePoint( eePosLogical, axT[i], ayT[i] ); // set the cursor to the left side of each selection document.selection.Text = sInsertBefore; // insert '[' }
Yutaka EmuraKeymasterI asked the developer of CSS HTML Validator. He wrote the next update of CSS HTML Validator (not Lite version included within EmEditor) will include support for JSON Lines syntax checking. If you haven’t already, you can buy a license with the discount here:
https://www.htmlvalidator.com/emeditor/Yutaka EmuraKeymasterI’ve reproduced this issue, and it will be fixed on v21.7.910.
Thank you.May 27, 2022 at 7:40 am in reply to: crashes on lowercase / uppercase when the selection exceeds the line’s end #28209Yutaka EmuraKeymasterHello,
I couldn’t reproduce the issue. Please try the latest beta version. If the issue still persists, how did you change the case?
Please try:
1. Download the latest beta portable version at https://support.emeditor.com/en/downloads
2. Try the same procedure to see if it still crashes.
3. If it didn’t crash, try changing the settings so that you can reproduce the crash. If it crashes again, please let me know what settings you’ve changed.
Alternatively, you can export the current settings from the currently installed EmEditor, select Reset All Settings on the Tools menu, and see if you can still reproduce the issue. Restore your settings gradually to see which settings are related to the crash.
Thank you,
Yutaka EmuraKeymasterHello,
I might think about this in the future, but I believe it is easy to work around. Dictionary files are plain text files. If you look at en_US.dic in the Dictionaries folder of the EmEditor install path, you will see the list of words. You can simply combine two dictionaries to create a new language. You will also need .aff file. I believe you can use the same file for two languages.
Another workaround is you can append either one dictionary to “UserDic.bin” file located in %appdata%\Emurasoft\EmEditor\Spell. “UserDic.bin” is a user dictionary. When you open “UserDic.bin“, you will need to specify UTF-16LE without signature.
Yutaka EmuraKeymasterHello,
I couldn’t reproduce the crash.
Please try:
1. Download the latest beta portable version at https://support.emeditor.com/en/downloads
2. Try the same procedure to see if it still crashes.
3. If it didn’t crash, try changing the settings so that you can reproduce the crash. If it crashes again, please let me know what settings you’ve changed.
Alternatively, you can export the current settings from the currently installed EmEditor, select Reset All Settings on the Tools menu, and see if you can still reproduce the issue. Restore your settings gradually to see which settings are related to the crash.
Thank you,
May 25, 2022 at 11:57 am in reply to: Strange behaviour when pressing Tab when multiple lines are selected #28201Yutaka EmuraKeymasterIf you don’t like the current behavior, go to Properties for All Configurations (Tools menu), select Keyboard page, select Edit category, select Tab or Increase Line Indent command, select Tab form the Current Keys list, and click Delete button.
May 22, 2022 at 7:50 am in reply to: Strange behaviour when pressing Tab when multiple lines are selected #28199Yutaka EmuraKeymasterThis is the correct behavior. When you press TAB when multiple lines are selected, the behavior becomes Indent.
Yutaka EmuraKeymasterThis is due to the Windows design, and I’ve already tried improving this speed, but I won’t be able to optimize it furthermore. Instead, please create a link by dragging and drop a linked file to the batch list, or clicking “Add to Batch” button and then selecting “Add a Linked File“.
See our videos to find how to create a link.
How to search (filter) a large text file for many (millions of) strings
How to replace many (millions of) strings in a large text fileYutaka EmuraKeymasterI’ve fixed the crash bug on v21.7.904.
Thank you!Yutaka EmuraKeymasterHello,
Is this a question about the Syntax check feature of EmEditor in the JSON configuration? If so, the syntax check is performed by the CSS HTML Validator engine, and I will forward your message to the developer of the engine.Yutaka EmuraKeymaster“Pin to this (favorite) list” should NOT be influenced by 100-day limit.
The 100-day calculation applies from the date of access.Yutaka EmuraKeymaster1) The difference in size is due to the difference in the number of files (including bookmark info).
2) Correct.
3) “Easily handle files up to 16 TB” and “file history” are not related at all.
I hope this clarifies your questions.
Yutaka EmuraKeymasterI couldn’t reproduce the issue. Are you using the latest version (21.6.907)?
- AuthorPosts