Branch: refs/heads/master
Author: Colomban Wendling <ban(a)herbesfolles.org>
Committer: Colomban Wendling <ban(a)herbesfolles.org>
Date: Wed, 22 Mar 2017 21:56:49 UTC
Commit: e9c4201943e671148c80d8fcec18e8739ee86320
https://github.com/geany/geany-plugins/commit/e9c4201943e671148c80d8fcec18e…
Log Message:
-----------
geniuspaste: Fix small typos in the documentation
Modified Paths:
--------------
geniuspaste/README
Modified: geniuspaste/README
4 lines changed, 2 insertions(+), 2 deletions(-)
===================================================================
@@ -67,7 +67,7 @@ Placeholders
Values from the `[format] section`_ and the *replace* key in the `[parse]
section`_ can contain references to placeholders with the syntax ``%name%``
-(i.e. ``%contents%``).
+(e.g. ``%contents%``).
Custom placeholders can be defined in the `[defaults] section`_.
The builtin placeholders are:
@@ -121,7 +121,7 @@ enable response body parsing, and it will use the default *search* and
*search*
A regular expression (PCRE) pattern to match against the pastebin
service's raw response data.
- Defaults to ``^[[:space:]]*(.+?)[[:space:]]*$``, e.g. capture everything
+ Defaults to ``^[[:space:]]*(.+?)[[:space:]]*$``, i.e. capture everything
but the leading and trailing whitespaces.
*replace*
The final URL, with regular expression capture groups from *search*
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Jiří Techet <techet(a)gmail.com>
Committer: Jiří Techet <techet(a)gmail.com>
Date: Wed, 05 Apr 2017 16:04:19 UTC
Commit: 4a0002178ad9cee0ff6377b74a9cc6c6ba02b010
https://github.com/geany/geany-plugins/commit/4a0002178ad9cee0ff6377b74a9cc…
Log Message:
-----------
projectorganizer: Require that prj_org != NULL inside expand_on_idle()
The previous code only checked this for paths shown in the sidebar but
since the plugins also tries to perform the expansion for the current
document when this option is enabled, it needs to be done for this case
as well.
Just leave the function when prj_org == NULL.
Modified Paths:
--------------
projectorganizer/src/prjorg-sidebar.c
Modified: projectorganizer/src/prjorg-sidebar.c
5 lines changed, 4 insertions(+), 1 deletions(-)
===================================================================
@@ -1221,7 +1221,10 @@ static gboolean expand_on_idle(ExpandData *expand_data)
{
GeanyDocument *doc = document_get_current();
- if (prj_org && geany_data->app->project == expand_data->project &&
+ if (!prj_org)
+ return FALSE;
+
+ if (geany_data->app->project == expand_data->project &&
expand_data->expanded_paths)
{
gchar *item;
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).