Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to test grimoire by Pol Vinogradov

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Pol Vinogradov <scm AT mail.sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to test grimoire by Pol Vinogradov
  • Date: Wed, 17 May 2006 16:40:58 -0500

GIT changes to test grimoire by Pol Vinogradov <vin.public AT gmail.com>:

libs/readline/DETAILS | 2 +-
libs/readline/HISTORY | 6 ++++++
libs/readline/etc/inputrc | 7 +++++++
libs/readline/etc/profile.d/readline.sh | 5 +++--
4 files changed, 17 insertions(+), 3 deletions(-)

New commits:
commit b45c4feefac0063e6d38b0a2b7dee4a184ac9640
Author: Pol Vinogradov <vin.public AT gmail.com>
Commit: Pol Vinogradov <vin.public AT gmail.com>

Merged Juuso changes in p4

diff --git a/libs/readline/DETAILS b/libs/readline/DETAILS
index 158c537..2801b24 100755
--- a/libs/readline/DETAILS
+++ b/libs/readline/DETAILS
@@ -10,7 +10,7 @@ SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL
WEB_SITE=http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html
ENTERED=20010922
UPDATED=20040517
- PATCHLEVEL=3
+ PATCHLEVEL=4
BUILD_API=2
KEYWORDS="libs"
SHORT="readline lets users edit command lines as they are typed
in."
diff --git a/libs/readline/HISTORY b/libs/readline/HISTORY
index 3729cb6..a6b8cbf 100644
--- a/libs/readline/HISTORY
+++ b/libs/readline/HISTORY
@@ -1,3 +1,9 @@
+2006-05-17 Juuso Alasuutari <iuso AT sourcemage.org>
+ * etc/inputrc: Add system bell option (as in bug #10021), add
+ word jump arrow key mapping (commented out by default)
+ * etc/profile.d/readline.sh: Added comments, bashified code
+ * DETAILS: Bumped PATCHLEVEL
+
2006-03-20 George Sherwood <george AT beernabeer.com>
* DETAILS: Updated PATCHLEVEL
* PRE_BUILD: Added two patches 003 and 004
diff --git a/libs/readline/etc/inputrc b/libs/readline/etc/inputrc
index ffe524c..87afc06 100644
--- a/libs/readline/etc/inputrc
+++ b/libs/readline/etc/inputrc
@@ -7,6 +7,9 @@ set input-meta on
set convert-meta off
set output-meta on

+# System bell (none, visible or audible)
+set bell-style none
+
# Key mappings
"\e[1~": beginning-of-line
"\e[2~": quoted-insert
@@ -22,3 +25,7 @@ # Key mappings
"\eOF": end-of-line
"\eOd": backward-word
"\eOc": forward-word
+
+# Make sideways arrows jump words
+#"\e[D": backward-word
+#"\e[C": forward-word
diff --git a/libs/readline/etc/profile.d/readline.sh
b/libs/readline/etc/profile.d/readline.sh
index d634dbe..e5922c7 100755
--- a/libs/readline/etc/profile.d/readline.sh
+++ b/libs/readline/etc/profile.d/readline.sh
@@ -1,6 +1,7 @@
#!/bin/bash
+# If user has no local inputrc file, use global file if it exists

-if [ ! -e $HOME/.inputrc ] &&
- [ -e /etc/inputrc ]; then
+if [[ ! -f $HOME/.inputrc ]] &&
+ [[ -f /etc/inputrc ]]; then
export INPUTRC=/etc/inputrc
fi




Archive powered by MHonArc 2.6.24.

Top of Page