You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by al...@apache.org on 2014/08/18 21:02:12 UTC

[1/2] git commit: (cqlsh) enable CTRL-R history search with libedit

Repository: cassandra
Updated Branches:
  refs/heads/cassandra-2.1.0 055b89642 -> fabdd431a


(cqlsh) enable CTRL-R history search with libedit

patch by Aleksey Yeschenko; reviewed by Jeremiah Jordan for
CASSANDRA-7577


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/36382e54
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/36382e54
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/36382e54

Branch: refs/heads/cassandra-2.1.0
Commit: 36382e54721d0ba615f94045aa4e8d507928ae70
Parents: 384d4f0
Author: Aleksey Yeschenko <al...@apache.org>
Authored: Mon Aug 18 21:52:19 2014 +0300
Committer: Aleksey Yeschenko <al...@apache.org>
Committed: Mon Aug 18 21:52:19 2014 +0300

----------------------------------------------------------------------
 CHANGES.txt | 1 +
 bin/cqlsh   | 1 +
 2 files changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/36382e54/CHANGES.txt
----------------------------------------------------------------------
diff --git a/CHANGES.txt b/CHANGES.txt
index 4b1becc..6c2ba2c 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,4 +1,5 @@
 2.0.10
+ * (cqlsh) enable CTRL-R history search with libedit (CASSANDRA-7577)
  * Fix dropping collection when it's the last regular column (CASSANDRA-7744)
  * Properly reject operations on list index with conditions (CASSANDRA-7499)
  * (Hadoop) allow ACFRW to limit nodes to local DC (CASSANDRA-7252)

http://git-wip-us.apache.org/repos/asf/cassandra/blob/36382e54/bin/cqlsh
----------------------------------------------------------------------
diff --git a/bin/cqlsh b/bin/cqlsh
index 64d7bf5..c99b98c 100755
--- a/bin/cqlsh
+++ b/bin/cqlsh
@@ -741,6 +741,7 @@ class Shell(cmd.Cmd):
                 if readline.__doc__ is not None and 'libedit' in readline.__doc__:
                     readline.parse_and_bind("bind -e")
                     readline.parse_and_bind("bind '" + self.completekey + "' rl_complete")
+                    readline.parse_and_bind("bind ^R em-inc-search-prev")
                 else:
                     readline.parse_and_bind(self.completekey + ": complete")
         try:


[2/2] git commit: Merge branch 'cassandra-2.0' into cassandra-2.1.0

Posted by al...@apache.org.
Merge branch 'cassandra-2.0' into cassandra-2.1.0


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/fabdd431
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/fabdd431
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/fabdd431

Branch: refs/heads/cassandra-2.1.0
Commit: fabdd431ae9cda53b6a274bff4644dd467a5a392
Parents: 055b896 36382e5
Author: Aleksey Yeschenko <al...@apache.org>
Authored: Mon Aug 18 22:00:40 2014 +0300
Committer: Aleksey Yeschenko <al...@apache.org>
Committed: Mon Aug 18 22:00:40 2014 +0300

----------------------------------------------------------------------

----------------------------------------------------------------------