[hackers] [PATCH] Allow browsing navigation history with dmenu

2015-10-04 Thread Markus Teich
This patch introduces ctrl-shift-h to open a dmenu with the recent navigation history of the respective surf instance. --- Heyho, This is _not_ an alternative history patch. It emulates the list you get in chrome when right-clicking the back navigation button. I missed this from surf and finally

[hackers] [scc] Move keyword initialization to more specific places || Roberto E. Vargas Caballero

2015-10-04 Thread git
commit 1537ee3c105f0ba568d4a3b40adf4021da40b7c9 Author: Roberto E. Vargas Caballero AuthorDate: Sun Oct 4 21:07:40 2015 +0200 Commit: Roberto E. Vargas Caballero CommitDate: Sun Oct 4 21:07:40 2015 +0200 Move keyword initialization to more specific places It is better if eac

[hackers] [scc] Split initialization of keywords || Roberto E. Vargas Caballero

2015-10-04 Thread git
commit fe8c715e58c377228207548a27aed474839feca5 Author: Roberto E. Vargas Caballero AuthorDate: Sun Oct 4 20:39:32 2015 +0200 Commit: Roberto E. Vargas Caballero CommitDate: Sun Oct 4 20:41:29 2015 +0200 Split initialization of keywords The initialization was thought for key

Re: [hackers] [dmenu] paste fix

2015-10-04 Thread FRIGN
On Sun, 4 Oct 2015 18:42:23 +0200 Hiltjo Posthuma wrote: > It is correct to use if it's a (feature) patch for the wiki. For > patches against the current code it is encouraged to use format-patch > so they can be applied directly (with git am). The problem I see is that most of the time, people

Re: [hackers] [dmenu] paste fix

2015-10-04 Thread Hiltjo Posthuma
On Sun, Oct 4, 2015 at 6:22 PM, shua lloret wrote: > You should change the website if git diff is not the correct way to create > patches. > > http://dwm.suckless.org/patches/ > http://surf.suckless.org/patches/ > http://tools.suckless.org/dmenu/patches/ > http://tools.suckless.org/ii/patches/ > h

Re: [hackers] [dmenu] paste fix

2015-10-04 Thread shua lloret
You should change the website if git diff is not the correct way to create patches. http://dwm.suckless.org/patches/ http://surf.suckless.org/patches/ http://tools.suckless.org/dmenu/patches/ http://tools.suckless.org/ii/patches/ http://tools.suckless.org/sic/patches/ http://tools.suckless.org/tab

[hackers] [sbase] Prepend "usage: " in usage() || sin

2015-10-04 Thread git
commit 23fdd768f04feeea72d1ab8c8982585a930687d1 Author: sin AuthorDate: Sun Oct 4 16:58:03 2015 +0100 Commit: sin CommitDate: Sun Oct 4 17:00:47 2015 +0100 Prepend "usage: " in usage() diff --git a/getconf.c b/getconf.c index 7a96a0d..e21f002 100644 --- a/getconf.c +++ b/getconf.c @

[hackers] [sbase] Lint is dead - remove unnecessary cast to (void) || sin

2015-10-04 Thread git
commit 3423752465a82b357421169f48baab98a3ba405f Author: sin AuthorDate: Sun Oct 4 16:48:05 2015 +0100 Commit: sin CommitDate: Sun Oct 4 16:49:59 2015 +0100 Lint is dead - remove unnecessary cast to (void) diff --git a/getconf.c b/getconf.c index a9a2217..7a96a0d 100644 --- a/getconf

[hackers] [sbase] ls: handle character/block files in long format || Quentin Rameau

2015-10-04 Thread git
commit 0e2f50988310356b2764b911980476ea514a312f Author: Quentin Rameau AuthorDate: Sun Oct 4 13:10:28 2015 +0200 Commit: sin CommitDate: Sun Oct 4 16:45:51 2015 +0100 ls: handle character/block files in long format Although major() and minor() are not POSIX, we don't want to

[hackers] [sbase] Stop defining major()/minor() and makedev() || sin

2015-10-04 Thread git
commit f14a8968913a4a86064b1688790880bb94fe5a53 Author: sin AuthorDate: Sun Oct 4 16:36:39 2015 +0100 Commit: sin CommitDate: Sun Oct 4 16:39:28 2015 +0100 Stop defining major()/minor() and makedev() Rely on what the system provides. These are not standardized macros bu

[hackers] [dmenu] fix input text matching || Quentin Rameau

2015-10-04 Thread git
commit 09d0a36e0370f7ca9bdb171bf93c5ac3131c5a92 Author: Quentin Rameau AuthorDate: Sun Oct 4 14:47:52 2015 +0200 Commit: Hiltjo Posthuma CommitDate: Sun Oct 4 15:04:59 2015 +0200 fix input text matching just compare the size of the input string diff --git a/dmenu.c b/dmenu.

Re: [hackers] [dmenu] Fix incorrect ordering of matching results

2015-10-04 Thread Hiltjo Posthuma
On Fri, Aug 14, 2015 at 6:28 PM, Davide Del Zompo wrote: > dmenu incorrectly orders matching results: > > $ dmenu < suck xless > suck less > EOF > > Typing 'suck less' shows 'suck xless' as first result, however, according to a > comment in the source code, this is not the intended behaviour: >

[hackers] [dmenu] fix incorrect ordering of match results || Davide Del Zompo

2015-10-04 Thread git
commit acbf35a5e35b6f6a7dd3f8da49a6e5ec5ac075ce Author: Davide Del Zompo AuthorDate: Sun Oct 4 14:01:22 2015 +0200 Commit: Hiltjo Posthuma CommitDate: Sun Oct 4 14:03:07 2015 +0200 fix incorrect ordering of match results look for exact matches comparing the user input agains

Re: [hackers] [dmenu] paste fix

2015-10-04 Thread Pickfire
On Sun, Oct 04, 2015 at 12:45:23PM +0200, Hiltjo Posthuma wrote: On Sat, Oct 3, 2015 at 3:09 AM, shua lloret wrote: attached is a small patch to enable pasting from clipboard, as well as primary. It seems like there was already code in there to allow this, but since there was never any case to

Re: [hackers] [dmenu] paste fix

2015-10-04 Thread Hiltjo Posthuma
On Sat, Oct 3, 2015 at 3:09 AM, shua lloret wrote: > attached is a small patch to enable pasting from clipboard, as well as > primary. > > It seems like there was already code in there to allow this, but since there > was never any case to match the upper case 'Y', that inline if would always > ev

[hackers] [dmenu] fix paste from clipboard (ctrl+shift+y) || Hiltjo Posthuma

2015-10-04 Thread git
commit 240a7810e492ec01075614729a1a1c45ef9f7af2 Author: Hiltjo Posthuma AuthorDate: Sun Oct 4 12:32:07 2015 +0200 Commit: Hiltjo Posthuma CommitDate: Sun Oct 4 12:32:07 2015 +0200 fix paste from clipboard (ctrl+shift+y) from Joshua Lloret on the ML: "attached is a s