Gimp Auto-Complete Python
A Sublime Text Auto-Complete plugin for GIMP's Python API.
Details
Installs
- Total 4K
- Win 3K
- Mac 344
- Linux 643
| Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | Oct 6 | Oct 5 | Oct 4 | Oct 3 | Oct 2 | Oct 1 | Sep 30 | Sep 29 | Sep 28 | Sep 27 | Sep 26 | Sep 25 | Sep 24 | Sep 23 | Sep 22 | Sep 21 | Sep 20 | Sep 19 | Sep 18 | Sep 17 | Sep 16 | Sep 15 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Windows | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 2 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 2 | 0 | 0 | 1 | 0 | 1 | 0 | 0 |
| Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
GIMP Auto-Complete Python API for Sublime Text
This auto-complete plugin covers 1000+ Functions and Constants available in GIMP's Plugin API. All these functions and constants are now just a few keys away. Simply type some letters of a function and press Enter. The full function name, qualified by module identifier pdb, together with arguments (if any) shall appear at cursor location. Imagine how much typing that would save you.
Examples
| Text Entered | Result |
|---|---|
fundst |
pdb.gimp_image_undo_group_start(image) |
flus |
pdb.gimp_displays_flush() |
fthwl |
pdb.gimp_image_thaw_layers(image) |
fgactl |
pdb.gimp_image_get_active_layer(image) |
fitsn |
pdb.gimp_item_set_name(item, name) |
fgau |
pdb.plug_in_gauss(image, drawable, horizontal, vertical, method) |
fcub |
pdb.plug_in_cubism(image, drawable, tile_size, tile_saturation, bg_color) |
fgsa |
pdb.python_fu_gradient_save_as_css(gradient, file_name) |
ffo |
pdb.python_fu_foggify(image, drawable, name, colour, turbulence, opacity) |
fstcm |
pdb.script_fu_set_cmap(image, drawable, palette) |
fba |
pdb.script_fu_blend_anim(image, drawable, value, value, toggle) |
cpfi |
PF_IMAGE |
cpfdr |
PF_DRAWABLE |
crgba |
RGBA_IMAGE |
clov |
LAYER_MODE_OVERLAY |
clinb |
LAYER_MODE_LINEAR_BURN |
clmul |
LAYER_MODE_MULTIPLY_LEGACY |
ctr |
TRUE |
Tips
- Remember,
fis for … Functions, andcis for … Constants. - You don't need to type
pdbor.or any of the prefixes, likegimp,python_fu,script_fu, etc. Just type a few letters from the “true name” of a function/constant. Observe the patterns used in examples. - You could use
TabandShift+Tabto cycle forward and backward through arguments. - If you accidentally invoke an undesirable completion, performing a simple Undo
ctrl + zmight be a better fix, rather than manually deleting the unwanted bits.
Installation _ via Sublime Package Control
- Open command palette by using the menu command: Tools → Command Palette
- Select:
Package Control: Install Package - Search for the package name:
Gimp Auto-Complete Pythonand pressEnter - After installation completes, you could start using this plugin straight away; no restart required.
Installation _ Manually
- Download the plugin (or clone this repository).
- After extraction, copy
gimp_autocomplete_pythonfolder to Sublime Text's Packages folder. - You can locate this folder from Sublime Text by using the menu command: Preferences → Browse Packages.
- You could start using this plugin straight away; no restart required.
Notes
- The data is based upon GIMP 2.10.20 r1.
- All deprecated functions have been filtered out.
- A Scheme version of this plugin is available here: https://github.com/civAnimal/gimp_autocomplete_scheme
- This plugin is released under … GNU General Public License (v3).
Feedback & Comments
- Email: civanimal@gmail.com
- Twitter:
civAnimal
Copyright © 2020 civAnimal