summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorjjacky2012-06-08 13:47:07 +0200
committerOlivier Brunel2015-06-08 19:16:26 +0200
commit32feee0dd80648076fe350906d564120d9f37668 (patch)
treee28f064a3bacb28556a7a8fb3416ce82d99233e6
parentd07675dca4be5d92e8ffd3fb192c0534e138e6c9 (diff)
downloadaur-32feee0dd80648076fe350906d564120d9f37668.tar.gz
rxvt-unicode: removed option SCROLL_ON_UPDOWN_KEYS in feature.h
Seems it can cause problems (collides with keysyms in emacs with cua-mode), and if one needs it one can: - re-enable it in the PKGBUILD before running makepkg - just use the following in your .Xdefaults : URxvt.keysym.Shift-Up: command:\033]720;1\007 URxvt.keysym.Shift-Down: command:\033]721;1\007 (thanks to sprash) Signed-off-by: Olivier Brunel <jjk@jjacky.com>
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD3
2 files changed, 2 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 5783b6570bb2..a9ede067ff0d 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = rxvt-unicode-better-wheel-scrolling
pkgdesc = An unicode enabled rxvt-clone terminal emulator (urxvt) w/ better wheel scrolling (VTE-like) (& no utmp/wtmp support)
pkgver = 9.15
- pkgrel = 3
+ pkgrel = 4
url = http://software.schmorp.de/pkg/rxvt-unicode.html
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index ff5572a8a052..1c6b8586a546 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -8,7 +8,7 @@
_pkgname=rxvt-unicode
pkgname=${_pkgname}-better-wheel-scrolling
pkgver=9.15
-pkgrel=3
+pkgrel=4
pkgdesc="An unicode enabled rxvt-clone terminal emulator (urxvt) w/ better wheel scrolling (VTE-like) (& no utmp/wtmp support)"
arch=('i686' 'x86_64')
url="http://software.schmorp.de/pkg/rxvt-unicode.html"
@@ -33,7 +33,6 @@ build() {
cd "${srcdir}/${_pkgname}-${pkgver}"
patch -p1 -i ../clear.patch
patch -p1 -i ../secondaryWheel.patch
- sed -i "s@/\* #define SCROLL_ON_UPDOWN_KEYS \*/@#define SCROLL_ON_UPDOWN_KEYS@" src/feature.h
./configure --prefix=/usr \
--with-terminfo=/usr/share/terminfo \
--enable-256-color \