RSS/Atom feed Twitter
Site is read-only, email is disabled

Displaying keyboard shortcuts

This discussion is connected to the gimp-user-list.gnome.org mailing list which is provided by the GIMP developers and not related to gimpusers.com.

This is a read-only list on gimpusers.com so this discussion thread is read-only, too.

7 of 7 messages available
Toggle history

Please log in to manage your subscriptions.

Displaying keyboard shortcuts Jeffery Small 04 Jan 13:24
Displaying keyboard shortcuts mordac2@pixolight.com 04 Jan 17:03
  Displaying keyboard shortcuts David Gowers 05 Jan 02:10
Displaying keyboard shortcuts Jeffery Small 05 Jan 03:58
  Displaying keyboard shortcuts Kevin Cozens 05 Jan 04:32
  Displaying keyboard shortcuts David Gowers 05 Jan 04:50
  Displaying keyboard shortcuts Kevin Cozens 05 Jan 07:03
Jeffery Small
2008-01-04 13:24:44 UTC (about 17 years ago)

Displaying keyboard shortcuts

Speaking of keyboard shortcuts, is there any way to see a concise list of all assigned shortcuts ordered into groups (i.e., sorted by alpha-numeric, Shift, Control, Alt, Meta, Control-Shift, etc.)? If not, I think this would be a really useful function to add to the Keyboard shortcuts menu. Pressing a button on the menu could present only the assigned shortcuts sorted into groups, with the corresponding gimp function listed.

Regards,

mordac2@pixolight.com
2008-01-04 17:03:27 UTC (about 17 years ago)

Displaying keyboard shortcuts

For those wanting a list of their current shortcuts - you can use this script...

http://gimpthoughts.com/home/index.php?option=com_docman&task=cat_view&gid=23&Itemid=38

For an example of what it does: http://gimpthoughts.com/share/shortcuts/categories.html

Couple notes: It creates a "shortcuts" folder in your profile directory where it writes the html.
Depending on your security settings it may not open your browser automatically.

Final note: - I'm not a real coder... So I'm sure there are few things that could be improved... But hey - it does what I want... and I learn each time that I write one...

David Gowers
2008-01-05 02:10:31 UTC (about 17 years ago)

Displaying keyboard shortcuts

Hi mordac,

On Jan 5, 2008 2:33 AM, wrote:

For those wanting a list of their current shortcuts - you can use this script...

http://gimpthoughts.com/home/index.php?option=com_docman&task=cat_view&gid=23&Itemid=38

For an example of what it does: http://gimpthoughts.com/share/shortcuts/categories.html

Couple notes: It creates a "shortcuts" folder in your profile directory where it writes the html.
Depending on your security settings it may not open your browser automatically.

Final note: - I'm not a real coder... So I'm sure there are few things that could be improved... But hey - it does what I want... and I learn each time that I write one...

Brilliant! It does what I want, too -- in fact, I had wanted something exactly like this, but never got around to writing any code for it.

The only mistake I see is 'ASSIGNED KEY'S'. -> 'ASSIGNED KEYS'. Actually, there is another one -- it would be good if it didn't depend on script-fu.
use gimp-round-rect-select instead of script-fu-selection-rounded-rectangle. I tried commenting it out, and that stops it crashing (however, no images are generated, so the result can be a little odd looking.)

Jeffery Small
2008-01-05 03:58:06 UTC (about 17 years ago)

Displaying keyboard shortcuts

On Jan 5, 2008 2:33 AM, wrote:

For those wanting a list of their current shortcuts - you can use this script...

http://gimpthoughts.com/home/index.php?option=com_docman&task=cat_view&gid=23&Itemid=38

Hi:

I downloaded viewShortcuts.py and place it in my plug-ins directory. However, it is not being seen by gimp. Nothing appears in the Help menu nor is it listed in the Script-Fu menu. There is no error or warning message when gimp starts. Has this been tested with gimp 2.4.3? I'm on a Solaris system.

Regards,
--
Jeffery Small

Kevin Cozens
2008-01-05 04:32:28 UTC (about 17 years ago)

Displaying keyboard shortcuts

Jeffery Small wrote:

On Jan 5, 2008 2:33 AM, wrote:

For those wanting a list of their current shortcuts - you can use this script...

http://gimpthoughts.com/home/index.php?option=com_docman&task=cat_view&gid=23&Itemid=38

I downloaded viewShortcuts.py and place it in my plug-ins directory. However, it is not being seen by gimp. Nothing appears in the Help menu nor is it listed in the Script-Fu menu.

The script file name ends in .py which makes it a Python script. It won't appear under a Script-Fu menu. Look in the main GIMP menus for the entry "Shortcuts" found under Help.

David Gowers
2008-01-05 04:50:35 UTC (about 17 years ago)

Displaying keyboard shortcuts

On Jan 5, 2008 1:28 PM, Jeffery Small wrote:

On Jan 5, 2008 2:33 AM, wrote:

For those wanting a list of their current shortcuts - you can use this script...

http://gimpthoughts.com/home/index.php?option=com_docman&task=cat_view&gid=23&Itemid=38

Hi:

I downloaded viewShortcuts.py and place it in my plug-ins directory. However, it is not being seen by gimp. Nothing appears in the Help menu nor is it listed in the Script-Fu menu. There is no error or warning message when gimp starts. Has this been tested with gimp 2.4.3? I'm on a Solaris system.

You must chmod +x the plugin, in order for GIMP to see it. Also, you must have gimp-python installed (this is default on Linux for recent GIMP versions).
I'm using a recent SVN version of gimp, which is newer than 2.4.3, and it works fine for me.

Kevin Cozens
2008-01-05 07:03:17 UTC (about 17 years ago)

Displaying keyboard shortcuts

Jeffery Small wrote:

I downloaded viewShortcuts.py and place it in my plug-ins directory.

I forgot to mention that after the file is copied to the plug-ins directory you need to set the execute bits (ie. use chmod +x).