geanypy icon indicating copy to clipboard operation
geanypy copied to clipboard

Python bindings for the Geany plugin API.

Results 19 geanypy issues
Sort by recently updated
recently updated
newest added

When I updated to geany 1.32, geanypy plugins stopped working and no checkbox is visible under `tools > plugin manager` I had installed geanypy from the [arch user repository](https://aur.archlinux.org/packages/geanypy-git/).

Gtk3 branch which includes gtk3 and gtk2 compatible codebase and also keybinding stuffs. Also has some changes to plugin manager which takes geany main widget as parent.

I've been using ```geanypy``` as the interface for my https://github.com/mdda/geany-project-tree for some time now : Your plugin has been super-useful. Fedora 27 recently arrived, and geany-plugins-geanypy doesn't appear to have...

Currently, when I attempt to import python 3 libraries, I get an error (even if I add the python 3 sitepackages folder to the sys.path, I still get incompatability errors.)...

On ubuntu 16.04 at least the newer geany and geanypy do not seems to detect plugin that are placed inside a folder, previously this used to work. Has this been...

I'm trying to write simple autocomplete plugin: ``` py #!/usr/bin/env python #-*- coding:utf-8 -*- import geany, os, gettext, re, glob from ctypes import * gsc = geany.scintilla gsc.WORDSTARTPOSITION = 2266...

any chance you can add support for these http://www.geany.org/manual/reference/keybindings_8h.html in particular i am after the keybindings_send_command option so i can trigure build and compile from my plugin.

`scintilla_send_message` accepts a magic number in first argument - message id but GeanyPy doesn't provide any human-readable constants for that. There are another issue with send_message (see #32). It's easy...

Geany crashes if Python string passed to SSM. Use this function if last argument of SSM is string. Fixes #32.

Hi, I'm trying to create a plugin. I made a module for UI, one for database and one for funcionalities. All that modules are import in main module (with geany.plugin)....