This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Mark Pustjens <[email protected]> | |
# Previous Contributor: Geoffroy Carrier <[email protected]> | |
# Previous Contributor: Giorgio Lando <[email protected]> | |
# Previous Contributor: Leslie P. Polzer <[email protected]> | |
pkgname=isync | |
pkgver=1.1.0 | |
pkgrel=1 | |
pkgdesc="IMAP mail synchronizer for offline/batch mail editing" | |
url="http://isync.sourceforge.net/" | |
arch=(i686 x86_64) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Contributor: Daenyth <Daenyth+Arch AT gmail DOT com> | |
pkgname=gist-git | |
_pkgname=gist | |
pkgver=20101029 | |
pkgrel=1 | |
pkgdesc="Potentially the best command line gister" | |
arch=(any) | |
url="http://github.com/defunkt/gist" | |
license=('MIT') | |
depends=('ruby' 'git') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
commit c4b6241558a6c05794c06c9e23e11047f5cec5cc | |
Author: Chris van Dijk <[email protected]> | |
Date: Mon Sep 27 17:09:55 2010 +0930 | |
Open all new-window requests in a new tab | |
diff --git a/config/webview.lua b/config/webview.lua | |
index 1437769..9b3f2b1 100644 | |
--- a/config/webview.lua | |
+++ b/config/webview.lua |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 7be6e34e0293b7d619c2678403ebcdaae901bb1b Mon Sep 17 00:00:00 2001 | |
Message-Id: <7be6e34e0293b7d619c2678403ebcdaae901bb1b.1288195960.git.quigybo@hotmail.com> | |
From: Chris van Dijk <[email protected]> | |
Date: Thu, 28 Oct 2010 01:31:00 +1030 | |
Subject: [PATCH] Add `never' option to --color=[WHEN] | |
--- | |
README.pod | 4 ++-- | |
cower.c | 4 +++- | |
2 files changed, 5 insertions(+), 3 deletions(-) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/config/binds.lua b/config/binds.lua | |
index 950695b..e41f252 100644 | |
--- a/config/binds.lua | |
+++ b/config/binds.lua | |
@@ -278,7 +278,7 @@ binds.mode_binds = { | |
key({}, "Down", function (w) w.menu:move_down() end), | |
key({}, "Up", function (w) w.menu:move_up() end), | |
key({}, "Tab", function (w) w.menu:move_down() end), | |
- key({"Shift"}, "Tab", function (w) w.menu:mode_up() end), | |
+ key({"Shift"}, "Tab", function (w) w.menu:move_up() end), |