[geany/geany-plugins] f1cf98: commander: Add period to SEPARATORS
Vasiliy Faronov
git-noreply at xxxxx
Fri Jul 22 13:12:34 UTC 2016
Branch: refs/heads/master
Author: Vasiliy Faronov <vfaronov at gmail.com>
Committer: Colomban Wendling <ban at herbesfolles.org>
Date: Fri, 22 Jul 2016 13:12:34 UTC
Commit: f1cf9891bfb53262902122b5c3c92711e9bca5c7
https://github.com/geany/geany-plugins/commit/f1cf9891bfb53262902122b5c3c92711e9bca5c7
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).
More information about the Plugins-Commits
mailing list