Page 1 of 1

Getting Renaming right

Posted: 02 Feb 2018 17:21
by DixieCup48
When doing file renaming is they any way to get the program to do a Spell Check?

Re: Getting Renaming right

Posted: 02 Feb 2018 17:33
by highend
Sure, but not through normal XY renaming functions...

An offline hunspell wrapper with an XY script would be an option...

Re: Getting Renaming right

Posted: 03 Feb 2018 09:01
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

Re: Getting Renaming right

Posted: 03 Feb 2018 14:51
by DixieCup48
Am looking forward to trying it out!!

Re: Getting Renaming right

Posted: 05 Feb 2018 05:25
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