Re: [Github-comments] [geany/geany] Domain socket error: Not working via sudo is a geany bug, not a feature or bug in sudo (#1150)

2016-09-17 Thread elextr
For the information of people who read this issue in the future. It is mentioned above that some developers won't use Geany as root because of the risks. But it was not explained what the risk is. The risk is because, as Geany is an IDE, it has the capability to run random commands, and as it

Re: [Github-comments] [geany/geany] Allow plugins to get the data they set (#1234)

2016-09-17 Thread Matthew Brush
codebrainz commented on this pull request. > @@ -554,6 +554,24 @@ void plugin_builder_connect_signals(GeanyPlugin *plugin, } +/** Get the additional data that corresponds to the plugin. + * + * @param plugin The plugin provided by Geany + * @return The data corresponding to the plugin or

Re: [Github-comments] [geany/geany] Allow plugins to get the data they set (#1234)

2016-09-17 Thread elextr
elextr commented on this pull request. > @@ -554,6 +554,24 @@ void plugin_builder_connect_signals(GeanyPlugin *plugin, } +/** Get the additional data that corresponds to the plugin. + * + * @param plugin The plugin provided by Geany + * @return The data corresponding to the plugin or @c

Re: [Github-comments] [geany/geany] Allow plugins to get the data they set (#1234)

2016-09-17 Thread Matthew Brush
codebrainz commented on this pull request. > @@ -554,6 +554,24 @@ void plugin_builder_connect_signals(GeanyPlugin *plugin, } +/** Get the additional data that corresponds to the plugin. + * + * @param plugin The plugin provided by Geany + * @return The data corresponding to the plugin or

Re: [Github-comments] [geany/geany] Allow plugins to get the data they set (#1234)

2016-09-17 Thread elextr
elextr commented on this pull request. Guess its reasonable to get the data you set :) > @@ -554,6 +554,24 @@ void plugin_builder_connect_signals(GeanyPlugin *plugin, } +/** Get the additional data that corresponds to the plugin. + * + * @param plugin The plugin provided by Geany + *

Re: [Github-comments] [geany/geany] Allow plugins to get the data they set (#1234)

2016-09-17 Thread Matthew Brush
Ammended to add `@see geany_plugin_set_data()` reference. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/geany/geany/pull/1234#issuecomment-247819073

[Github-comments] [geany/geany] Allow plugins to get the data they set (#1234)

2016-09-17 Thread Matthew Brush
You can view, comment on, or merge this pull request online at: https://github.com/geany/geany/pull/1234 -- Commit Summary -- * Allow plugins to get the data they set -- File Changes -- M src/plugindata.h (1) M src/pluginutils.c (16) -- Patch Links --

Re: [Github-comments] [geany/geany] Add utils_get_real_path() and use it (#1224)

2016-09-17 Thread elextr
elextr commented on this pull request. LGBI -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/geany/geany/pull/1224#pullrequestreview-466340

Re: [Github-comments] [geany/geany] Add "project-before-close" signal to API (#1223)

2016-09-17 Thread elextr
elextr approved this pull request. LGTM -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/geany/geany/pull/1223#pullrequestreview-466296

Re: [Github-comments] [geany/geany] Add "project-before-close" signal to API (#1223)

2016-09-17 Thread Matthew Brush
If there are no objections, I will merge this "soon". -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/geany/geany/pull/1223#issuecomment-247817103

Re: [Github-comments] [geany/geany] Add new API function to open a project file (#1222)

2016-09-17 Thread Matthew Brush
If there are no objections, I will merge this "soon". -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/geany/geany/pull/1222#issuecomment-247817083

Re: [Github-comments] [geany/geany] Add utils_get_real_path() and use it (#1224)

2016-09-17 Thread Matthew Brush
If there are no objections, I will merge this "soon". -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/geany/geany/pull/1224#issuecomment-247817059

[Github-comments] [geany/geany-plugins] git-changebar: Fix handling of documents with a Unicode BOM (#483)

2016-09-17 Thread Colomban Wendling
Properly restore the BOM in the document buffer before diffing it against the Git buffer, not to diff the missing BOM. Fixes #482. You can view, comment on, or merge this pull request online at: https://github.com/geany/geany-plugins/pull/483 -- Commit Summary -- * git-changebar: Fix

[Github-comments] [geany/geany-plugins] git-changebar: unicode BOM always shown as changed line (#482)

2016-09-17 Thread dpirch
If a UTF-8 file starts with a BOM character, the changebar plugin always shows the first line as changed even if there is no change. To reproduce this, create a file with some lines of text, set encoding to UTF-8 and set "Document -> Write Unicode BOM"; save the file and git add and commit.