Getting Renaming right

Please check the FAQ (https://www.xyplorer.com/faq.php) before posting a question...
Post Reply
DixieCup48
Posts: 115
Joined: 30 Jan 2018 14:58

Getting Renaming right

Post by DixieCup48 »

When doing file renaming is they any way to get the program to do a Spell Check?

highend
Posts: 15004
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: Getting Renaming right

Post by highend »

Sure, but not through normal XY renaming functions...

An offline hunspell wrapper with an XY script would be an option...
One of my scripts helped you out? Please donate via Paypal

highend
Posts: 15004
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: Getting Renaming right

Post by highend »

This one should work...
screenshot.png
anim.gif
You need to invoke the renaming with a script (and ofc you need to adapt the path
after extracting the .zip file!):

Code: Select all

    $spellChecker = "D:\Users\Highend\Spell checker\Spell checker.exe";
    run """$spellChecker"" ""<curitem>""";
When the renamer window is displayed it works like this:
Whenever you hit the {ENTER} key while you've typed something into
the "Rename" box, the box will expand and show all alternatives that
the current hunspell dictionary knows about. You can use cursor up / down
keys to select an entry. Hit {ENTER} again to close the expanded box

Hit {TAB} to switch to the "Rename" button and {ENTER} again to finally
rename the file.

{ESC} in the rename box has three functions:
If the box is in expanded state, collapse
If the box is in non-expanded state, the input is cleared
If the input is clear, renaming is cancelled

Current version:
Spell checker_v2018-02-04.zip
Old version(s):
Spell checker_v2018-02-02.zip
To see the attached files, you need to log into the forum.
One of my scripts helped you out? Please donate via Paypal

DixieCup48
Posts: 115
Joined: 30 Jan 2018 14:58

Re: Getting Renaming right

Post by DixieCup48 »

Am looking forward to trying it out!!

highend
Posts: 15004
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: Getting Renaming right

Post by highend »

Code: Select all

@Changelog:
v2018-02-04
   - The option to deliver each suggestion with a lower- or uppercase letter is
     gone. It does not make much sense because hunspell will deliver mixed
     results by default
   ! The drop-down rename box should now clear it's list correctly
One of my scripts helped you out? Please donate via Paypal

Post Reply