@scresto09 commented on this pull request.


In incdec/src/incdec-plugin.c:

> +
+        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.


Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.Message ID: <geany/geany-plugins/pull/1351/review/2572788136@github.com>