@scresto09 commented on this pull request.
+ gtk_widget_show_all(vbox); + g_signal_connect(dialog, "response", G_CALLBACK(on_configure_response), NULL); + + return vbox; +} + + +void plugin_init (GeanyData *data) +{ + GeanyKeyGroup *key_group; + + load_config(); + + key_group = plugin_set_key_group (geany_plugin, "incdec", KB_COUNT, on_change_number_callback); + keybindings_set_item (key_group, KB_INCREMENT_NUMBER, NULL, GDK_KEY_KP_Add, GDK_SHIFT_MASK,
Yes, you're right, these are not the best keyboard shortcuts.
I have modified the default keyboard shortcuts and updated the files. Now we have to use Shift+A, Shift+X, and Shift+M.