Re: [dev] [ANNOUNCE] vis-0.1: first release of a vim-like editor

2016-02-03 Thread Joshua Haase
Marc André Tanner writes: > Is this still an issue? If so, please provide a failing example. It works on gf850388 (just tested latest commit). Thanks a lot! > Thanks, > Marc > > -- > Marc André Tanner >< http://www.brain-dump.org/ >< GPG key: 10C93617

[dev] [sbase][PATCH v2] pathchk

2016-02-03 Thread Mattias Andrée
New command, including man page. UTF-8 compatible and should be POSIX-compliant. Signed-off-by: Mattias Andrée --- LICENSE | 1 + Makefile | 1 + README| 1 + TODO | 1 - pathchk.1 | 35 ++ pathchk.c | 123 +

Re: [dev] [sbase] install

2016-02-03 Thread Mattias Andrée
On Wed, 3 Feb 2016 19:35:44 +0100 FRIGN wrote: > On Wed, 3 Feb 2016 19:27:36 +0100 > Mattias Andrée wrote: > > Hey Mattias, > > > What features are install in sbase supposed to have? > > install is not standardised, and the only flag all > > implementations seem to have in common is '-g'. >

Re: [dev] [sbase] install

2016-02-03 Thread FRIGN
On Wed, 3 Feb 2016 19:27:36 +0100 Mattias Andrée wrote: Hey Mattias, > What features are install in sbase supposed to have? > install is not standardised, and the only flag all > implementations seem to have in common is '-g'. I hope you know what e-mail etiquette is. Apply it next time you wri

[dev] [sbase] install

2016-02-03 Thread Mattias Andrée
What features are install in sbase supposed to have? install is not standardised, and the only flag all implementations seem to have in common is '-g'. pgpTlKRdpOIc7.pgp Description: OpenPGP digital signature

Re: [dev] [sbase][PATCH] pathchk

2016-02-03 Thread FRIGN
On Wed, 3 Feb 2016 11:12:01 +0100 Mattias Andrée wrote: Hey Mattias, > New command, including man page. > UTF-8 compatible and should be POSIX-compliant. kudos for digging yourself into Pathconfig, but we decided a while ago that for sanity reasons, we'll just use PATH_MAX buffers overall sbas

[dev] [sbase][PATCH] pathchk

2016-02-03 Thread Mattias Andrée
New command, including man page. UTF-8 compatible and should be POSIX-compliant. Signed-off-by: Mattias Andrée --- LICENSE | 1 + Makefile | 1 + README| 1 + TODO | 1 - pathchk.1 | 35 + pathchk.c | 166 ++

Re: [dev] [surf] Why yank to primary instead of clipboard?

2016-02-03 Thread Kamil Cholewiński
On Wed, 03 Feb 2016, Martti Kühne wrote: > Seriously, if you don't like it, much of this isn't the fault of sl. > That GTK programs use a different paste buffer for ^Ins is completely > arbitrary and probably the wrong thing GTK does there, but now that > doesn't force sl software to succumb to th

Re: [dev] [surf] Why yank to primary instead of clipboard?

2016-02-03 Thread Martti Kühne
On Wed, Feb 3, 2016 at 10:17 AM, Kamil Cholewiński wrote: > > This is even weirder. It pastes primary selection in terminals, but > clipboard in surf or emacs. It's even more confusing, I will > purposefully pretend it doesn't exist. > Seriously, if you don't like it, much of this isn't the faul

Re: [dev] [surf] Why yank to primary instead of clipboard?

2016-02-03 Thread Kamil Cholewiński
On Wed, 03 Feb 2016, sta...@cs.tu-berlin.de wrote: > * Kamil Cholewiński 2016-02-03 10:05 >> On Wed, 03 Feb 2016, robin wrote: >> Middle click. >> [...] >> Yes, this is really confusing and frustrating, I have to reach for the >> mouse when otherwise dealing with an almost keyboard-only environmen

Re: [dev] [surf] Why yank to primary instead of clipboard?

2016-02-03 Thread stanio
* Kamil Cholewiński 2016-02-03 10:05 > On Wed, 03 Feb 2016, robin wrote: > Middle click. > [...] > Yes, this is really confusing and frustrating, I have to reach for the > mouse when otherwise dealing with an almost keyboard-only environment. try Shift-Insert cheers --s

Re: [dev] [surf] Why yank to primary instead of clipboard?

2016-02-03 Thread Kamil Cholewiński
On Wed, 03 Feb 2016, robin wrote: > The function clipboard(Client *c, const Arg *arg) > uses GDK_SELECTION_PRIMARY instead of GDK_SELECTION_CLIPBOARD. > > For me, thats a hassle. > How do i copy a uri to send to a friend? > > I changed it to use CLIPBOARD, but I am wondering: > Is there any good r

Re: [dev] [surf] Why yank to primary instead of clipboard?

2016-02-03 Thread Pickfire
On Wed, Feb 03, 2016 at 08:33:16AM +0100, robin wrote: The function clipboard(Client *c, const Arg *arg) uses GDK_SELECTION_PRIMARY instead of GDK_SELECTION_CLIPBOARD. For me, thats a hassle. How do i copy a uri to send to a friend? I changed it to use CLIPBOARD, but I am wondering: Is there an

[dev] [surf] Why yank to primary instead of clipboard?

2016-02-03 Thread robin
The function clipboard(Client *c, const Arg *arg) uses GDK_SELECTION_PRIMARY instead of GDK_SELECTION_CLIPBOARD. For me, thats a hassle. How do i copy a uri to send to a friend? I changed it to use CLIPBOARD, but I am wondering: Is there any good reason to use PRIMARY?