Re: [Github-comments] [geany] Added keybindings for custom commands 4-9 (#858)

2016-02-15 Thread Enrico Tröger
@b4n could you just merge your branch with the resolved conflicts and remove the defaults for the new keybindings? I guess this would least work and we would get this one done. --- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/pull/858#issuecomment-184441388

Re: [Github-comments] [geany] If more tags are found during tag definition/declaration goto, let user select which one to use (#406)

2016-02-15 Thread Colomban Wendling
> + > + if (!tag_goto_popup) > + create_goto_popup(); > + > + model = gtk_tree_view_get_model(GTK_TREE_VIEW(tag_goto_tree_view)); > + gtk_list_store_clear(GTK_LIST_STORE(model)); > + > + foreach_ptr_array(tmtag, i, tags) > + { > + gchar *fname = g_path_ge

Re: [Github-comments] [geany] If more tags are found during tag definition/declaration goto, let user select which one to use (#406)

2016-02-15 Thread Colomban Wendling
> + > + model = gtk_tree_view_get_model(GTK_TREE_VIEW(tag_goto_tree_view)); > + gtk_list_store_clear(GTK_LIST_STORE(model)); > + > + foreach_ptr_array(tmtag, i, tags) > + { > + gchar *fname = g_path_get_basename(tmtag->file->file_name); > + gchar *text; > + >

Re: [Github-comments] [geany] If more tags are found during tag definition/declaration goto, let user select which one to use (#406)

2016-02-15 Thread Colomban Wendling
Current situation (and USERLIST one suggested above too) has bad usability with the mouse (ctrl+click) as it requires a double click. As there is a primary mouse-based trigger, I think it's important to fix this. (It probably could be nice to also directly select on single click from Scintilla'

Re: [Github-comments] [geany] If more tags are found during tag definition/declaration goto, let user select which one to use (#406)

2016-02-15 Thread Colomban Wendling
> + > + if (!tag_goto_popup) > + create_goto_popup(); > + > + model = gtk_tree_view_get_model(GTK_TREE_VIEW(tag_goto_tree_view)); > + gtk_list_store_clear(GTK_LIST_STORE(model)); > + > + foreach_ptr_array(tmtag, i, tags) > + { > + gchar *fname = g_path_ge

Re: [Github-comments] [geany] If more tags are found during tag definition/declaration goto, let user select which one to use (#406)

2016-02-15 Thread Colomban Wendling
> + > + model = gtk_tree_view_get_model(GTK_TREE_VIEW(tag_goto_tree_view)); > + gtk_list_store_clear(GTK_LIST_STORE(model)); > + > + foreach_ptr_array(tmtag, i, tags) > + { > + gchar *fname = g_path_get_basename(tmtag->file->file_name); > + gchar *text; > + >

Re: [Github-comments] [geany-plugins] [GeanyVC] use compatible gtkspell on building for gtk3 (#342)

2016-02-15 Thread Sagar Chalise
Sorry about the typo. Have made changes according to suggestions made by @b4n . --- Reply to this email directly or view it on GitHub: https://github.com/geany/geany-plugins/pull/342#issuecomment-184218627