[dev] [st] keep some glyph modes for the cursor

2017-02-06 Thread Nils Reuße
for the cursor. I find the current behaviour very disruptive, so here is a patch that keeps a few (arbitrarily chosen) modes for the cursor. Any comments? Thanks and king regards Nils [1] http://git.suckless.org/st/tree/st.c#n3963 [2] http://i.imgur.com/R2yCEaC.png diff --git a/st.c b/st.c index

Re: [dev] [st] can't use Xterm font

2015-02-23 Thread Nils Reuße
technology. If you're using an ubuntu flavor, bitmap fonts are disabled by default. To enable them, do $ cd /etc/fonts/conf.d/ $ sudo rm 70-no-bitmaps.conf $ sudo ln -s ../conf.avail/70-yes-bitmaps.conf then run $ fc-cache -f and search for fixed: $ fc-list | grep -i fixed nils

[dev] [st] crash on font resize (patch inside)

2015-02-14 Thread Nils Reuße
hi folks, i found a bug in st (latest git): if you keep downsizing your fontsize until either xw.ch or xw.cw gets 0, st crashes, because there is an unchecked division in cresize. my patch fixes the problem, but i haven't checked for a better solution. nils diff --git a/st.c b/st.c index

Re: [dev] [st] delele behaves as backspace... again

2014-11-06 Thread Nils R
, Nils

[dev] [st] delele behaves as backspace... again

2014-11-01 Thread Nils R
-terminal, zsh: ^[[3~ gnome-terminal, bash: ^[[3~ Any hints? Or reasons, why the behaviour was reverted? Best, Nils

[dev] [st] latest git fails to compile on openbsd

2014-06-06 Thread Nils R
' was here My patch below solves it for me, but i only tested on openbsd. Any thoughts? Nils [1]: http://git.suckless.org/st/commit/?id=c6fcb78b3a9a73b691875048848430c18870a0fc diff --git a/st.c b/st.c index 8b65450..45b9a02 100644 --- a/st.c +++ b/st.c @@ -180,7 +180,7 @@ typedef unsigned

Re: [dev] [st] latest git fails to compile on openbsd

2014-06-06 Thread Nils R
Roberto E. Vargas Caballero schrieb am 06.06.2014 15:22: On Fri, Jun 06, 2014 at 03:18:03PM +0200, Martin Kopta wrote: On Fri, Jun 06, 2014 at 01:55:17PM +0200, Nils R wrote: in commit c6fcb78b3a9a73b691875048848430c18870a0fc[1], Colourmap was renamed to the american version Colormap

Re: [dev] st stutter and freeze during window resize via mouse drag

2014-04-05 Thread Nils R
it and push for a new stable release, then we can ask upstream again to incorporate these changes :) Best, Nils

Re: [dev] st stutter and freeze during window resize via mouse drag

2014-04-04 Thread Nils R
easier in the future. Regards, Nils

Re: [dev] st stutter and freeze during window resize via mouse drag

2014-04-04 Thread Nils R
Nils R schrieb am 04.04.2014 09:03: Roberto E. Vargas Caballero schrieb am 03.04.2014 17:40: http://lists.suckless.org/dev/1401/19619.html I'm having the same problem as the person in this link. I'm using dwm 6.0 and st 0.4.1 You can’t be supported when not using the git

Re: [dev] [st] problems with terminfo entries and zsh

2014-03-21 Thread Nils R
on their mailing list. Thanks again for your help Nils

Re: [dev] [st] problems with terminfo entries and zsh

2014-03-17 Thread Nils R
. ^[, whatever the difference might be. Nils

Re: [dev] [st] problems with terminfo entries and zsh

2014-03-17 Thread Nils R
~ | ^[[3~ | ^[[3~ | - works in zsh, bash; not in ksh For CTRL-v + SHIFT + TAB i couldn't get any output, is there another way than CTRL-V + key combo? Best, Nils

Re: [dev] [st] problems with terminfo entries and zsh

2014-03-17 Thread Nils R
Nils R schrieb am 17.03.2014 20:16: Christoph Lohmann schrieb am 17.03.2014 18:14: Greetings. On Mon, 17 Mar 2014 18:14:49 +0100 Martti Kühne mysat...@gmail.com wrote: Although I couldn't exactly verify what the ${terminfo[@]} array is, I'm going to assume it is a zsh builtin

[dev] [st] parse relative font size instead of pixelsize

2013-12-17 Thread Nils Reuße
pixelsize because size scales to the current display resolution, while pixelsize has to be increased (either in config.h or on starting st), e.g. if you switch between a non-hd (home) and hd screen (work). What do you think? Best, Nils diff --git a/st.c b/st.c index f883ac1..e888f32 100644

Re: [dev] [st] parse relative font size instead of pixelsize

2013-12-17 Thread Nils Reuße
On 12/17/2013 10:06 AM, Nils Reuße wrote: Hi suckless@, i tried to set a font and fontsize in config.h with the xft notation FONT-SIZE: static char font[] = Source Code Pro Medium-18:style=Regular; The font was recognized, but not the font size, defaulting to 12. The same was true when

Re: [dev] [st] goals / non-goals for st?

2009-10-30 Thread Nils
On Fri, Oct 30, 2009 at 08:42:19PM +, Aled Gest wrote: It would be nice to see a features thread that didn't degenerate into a competition of who's the biggest cock. Thank you for this post. If I look at the rest of this discussion it really makes me wonder why I'm still subscribed to this

Re: [dev] [st] goals / non-goals for st?

2009-10-30 Thread Nils
On Fri, Oct 30, 2009 at 09:06:29PM -0400, Andrew Antle wrote: Because it's hilarious! Especially when Lamb Sandwich starts whining. It's nothing but arrogant, unfriendly and wannabe-elitist to talk like this on a public mailing list. And I'm not even going to respond to Uriels mails.

Re: [dev] [surf] SearchEngines patch

2009-09-23 Thread Nils
On Wed, Sep 23, 2009 at 03:04:55PM +0200, cryptix wrote: Realized this is still bad. If you have 10 SearchEngines and only the last one matches in the parseuri() for loop, you would still have the other 9 allocated.. Getting rid of prefix altogether seams to be the cleanest approach. no

Re: [dev] [surf] SearchEngines patch

2009-09-23 Thread Nils
. Jup, I fixed this by adding a ... || *(uri + strlen(searchengines[i].token)) != ' ' to the continue-if. New patch is uploaded on surf.suckless.org. Nils

Re: [dev] [surf] SearchEngines patch

2009-09-23 Thread Nils
On Thu, Sep 24, 2009 at 10:16:28AM +1000, Jessta wrote: I don't think url parameter replacement is really the domain of the web browser Oh yeah, you're right. My window manager should do it.

Re: [dev] unsubscribe

2009-08-19 Thread Nils
You guys make me wanna unsubscribe, too. ;)