Branch: refs/heads/master
Author: Vasiliy Faronov <vfaronov(a)gmail.com>
Committer: Colomban Wendling <ban(a)herbesfolles.org>
Date: Fri, 22 Jul 2016 13:12:34 UTC
Commit: f1cf9891bfb53262902122b5c3c92711e9bca5c7
https://github.com/geany/geany-plugins/commit/f1cf9891bfb53262902122b5c3c92…
Log Message:
-----------
commander: Add period to SEPARATORS
This makes it easier to switch between files.
For example, if I have xyzzy.c and xyzzy.h open,
I can switch to xyzzy.h by typing "x.h".
Closes #464.
Modified Paths:
--------------
commander/src/commander-plugin.c
Modified: commander/src/commander-plugin.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -114,7 +114,7 @@ enum {
#define PATH_SEPARATOR " \342\206\222 " /* right arrow */
-#define SEPARATORS " -_/\\\"'"
+#define SEPARATORS " -_./\\\"'"
#define IS_SEPARATOR(c) (strchr (SEPARATORS, (c)) != NULL)
#define next_separator(p) (strpbrk (p, SEPARATORS))
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Vasiliy Faronov <vfaronov(a)gmail.com>
Committer: Frank Lanitz <frank(a)frank.uvena.de>
Date: Thu, 14 Jul 2016 05:52:22 UTC
Commit: adbad98e034f20efcd8eac913536ea332a0aa581
https://github.com/geany/geany-plugins/commit/adbad98e034f20efcd8eac913536e…
Log Message:
-----------
Git-Changebar: Mention the tooltip feature in the README (#463)
Modified Paths:
--------------
git-changebar/README
Modified: git-changebar/README
3 lines changed, 3 insertions(+), 0 deletions(-)
===================================================================
@@ -31,6 +31,9 @@ Usage
When loaded into Geany, this plugins adds markers in the markers margin.
If the marker margin is not visible, they are displayed as line backgrounds.
+When you point your mouse on a marker that indicates a changed or removed hunk,
+a tooltip pops up showing the original contents of that hunk.
+
To navigate through the hunks of the current file, you need to configure the
plugin's *Go to next hunk* and *Go to previous hunk* keybindings in Geany's
preferences dialog.
--------------
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: Frank Lanitz <frank(a)frank.uvena.de>
Date: Tue, 12 Jul 2016 07:23:15 UTC
Commit: 1e26c32e6c72eb7aea2780959c1df535a41b75e0
https://github.com/geany/geany-plugins/commit/1e26c32e6c72eb7aea2780959c1df…
Log Message:
-----------
Create README.rst link (#461)
* Link README.rst to README for github
* README: minor punctuation fixes
Modified Paths:
--------------
README
README.rst
Modified: README
4 lines changed, 2 insertions(+), 2 deletions(-)
===================================================================
@@ -26,11 +26,11 @@ However, this will configure, build and install most of the Geany plugins.
There is some auto-detection in place which automagically disables
some of the plugins if there are insufficient build dependencies.
The following arguments can tweak the behaviour of the configure
-script:
+script.
Options
=======
-A full listing of all supported options can be found in ``./configure --help.``
+A full listing of all supported options can be found in ``./configure --help``.
Enable/Disable Features
=======================
Modified: README.rst
1 lines changed, 1 insertions(+), 0 deletions(-)
===================================================================
@@ -0,0 +1 @@
+README
\ No newline at end of file
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).