Gimp-Forum.net

Full Version: Add keyboard hint to .scm plugins
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
go to scripts folder
find fu-register
example// alexios-duotone.scm
Code:
(script-fu-register
    "script-fu-duotone"
    _"<Image>/FX-Foundry/Photo/Effects/Simple Duotone..."

make change like this w/ underscore (_) before letter
Code:
(script-fu-register
    "script-fu-duotone"
    _"<Image>/F_X-f/_Photo/_Effects/Simple Duotone..."

Some text editor might have option to replace string in all open text document like in Geany ide.

On linux with example above,
Code:
find . -iname '*.scm' -exec sed -i 's#FX-Foundry/Photo/Effects/#F_X-f/_Photo/_#g' {} \;

this only change photo/effect, I failed to use arrays and loop to get it done quicker.

[Image: fx_f_scrot.png]