ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Gimp Auto-Complete Python

by civAnimal ST3

A Sublime Text Auto-Complete plugin for GIMP's Python API.

Details

Installs

  • Total 3K
  • Win 3K
  • Mac 309
  • Linux 576
Jul 27 Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8 Jul 7 Jul 6 Jul 5 Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13 Jun 12
Windows 0 2 0 1 1 1 0 0 1 0 0 2 1 1 1 1 1 0 0 1 1 1 2 1 0 1 0 0 0 1 1 1 2 0 1 0 0 1 1 0 0 1 0 0 0 1
Mac 0 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0
Linux 0 1 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 1 0 0 1 0 1 1 0 1 0 0 0 0 0 0 1 0 0 1 0 0 1 0 1 1 0 1 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, f is for … Functions, and c is for … Constants.
  • You don't need to type pdb or . or any of the prefixes, like gimp, 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 Tab and Shift+Tab to cycle forward and backward through arguments.
  • If you accidentally invoke an undesirable completion, performing a simple Undo ctrl + z might be a better fix, rather than manually deleting the unwanted bits.

Installation _ via Sublime Package Control

  • Open command palette by using the menu command: ToolsCommand Palette
  • Select: Package Control: Install Package
  • Search for the package name: Gimp Auto-Complete Python and press Enter
  • 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_python folder to Sublime Text's Packages folder.
  • You can locate this folder from Sublime Text by using the menu command: PreferencesBrowse Packages.
  • You could start using this plugin straight away; no restart required.

Notes

Feedback & Comments

Copyright © 2020 civAnimal