JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
st.git
10 years agoReload colors in reset
Roberto E. Vargas Caballero [Sat, 20 Jul 2013 19:52:40 +0000 (21:52 +0200)]
Reload colors in reset

Colors definition can be changed using a OSC sequence, so
we have to reload them if we want be sure all the colors
are the correct.

Could be desirable free the colors allocated due to rgb
colors and inverse colors (XftColorAllocValues in xdraws),
but it is impossible due we use the same structure for all
of them.

10 years agoAdd RGB color definition
Roberto E. Vargas Caballero [Fri, 19 Jul 2013 18:34:36 +0000 (20:34 +0200)]
Add RGB color definition

This patch uses the bit 24 in the color descriptor as an indicator
of RGB color, so we can take the values and generating the XftColour
directly in xdraws.

10 years agoImproved font caching
Eon S. Jeon [Fri, 19 Jul 2013 05:07:02 +0000 (01:07 -0400)]
Improved font caching

I made a patch that improves the performance of font caching mechanism.
This is based on a funny behaviour of FontConfig: it was handling
FcCharSet in a somewhat unexpected way.

So, we are currently adding "a character" to a new FcCharSet, and then
add it to a FcPattern. However, if we toss the FcPattern to FontConfig,
it loads the entire language(charset) that contains the character we
gave. That is, we don't always have to load a new font for each unknown
character. Instead, we can reused cached fonts, and this significantly
reduces the number of calls to extremely slow FontConfig matching
functions.

One more thing. I found that, in libXft, there's a function called
XftCharExists. XftCharIndex internally calls this function, and
does more stuffs if the character does exist. Since the returned index
is never used in st, we should call XftCharExists instead of
XftCharIndex. Please note that I already made this change in the patch.

10 years agofix: whitespace
Markus Teich [Sat, 22 Jun 2013 21:07:00 +0000 (23:07 +0200)]
fix: whitespace

10 years agoRemove long text being cropped/wrapped to standard 80x24 on launch.
Alexander Sedov [Sun, 23 Jun 2013 17:05:29 +0000 (21:05 +0400)]
Remove long text being cropped/wrapped to standard 80x24 on launch.

To be more specific, now tty creation is delayed until X window is
actually mapped; last ConfigureNotify before mapping determines
initial tty size.
Please report problems if there are any.

10 years agofix: consistent usage of bitmask operations on unicode functions
Markus Teich [Sat, 22 Jun 2013 21:06:49 +0000 (23:06 +0200)]
fix: consistent usage of bitmask operations on unicode functions

10 years agofix: do not need an extra variable for a single read
Markus Teich [Sat, 22 Jun 2013 21:05:03 +0000 (23:05 +0200)]
fix: do not need an extra variable for a single read

10 years agoFix match function bugs
Roberto E. Vargas Caballero [Sun, 23 Jun 2013 08:33:53 +0000 (10:33 +0200)]
Fix match function bugs

There were two problems with match denfinition.

1) There was a forward declaration in the form:

static inline bool match(uint, uint);

but later the function was defined as:

inline bool
match(uint mask, uint state) {

This causes that there were two different functions in the code, one local
and inline, and other inline but extern. All was working without problems
due to we were using -Os, and the compiler was using the extern definition
and it was no expanding the static declaration. If you removed the -Os flag,
then you got linker errors due it was no able to find the static definition
of the static declaration.

2) The mask checking was incorrect because we were doing the test:

(state & mask) != state

and this test only was saying that at least all the enabled bits of state
were enabled also in mask, but no all the possible bits in mask. This was
the origin of the bug reported by Xavier Cartron, where he said it was
possible activated some shortcuts with some of the modifiers defined in the
config.h file.

10 years agoRemove unneded call to draw
Roberto E. Vargas Caballero [Sun, 23 Jun 2013 10:13:26 +0000 (12:13 +0200)]
Remove unneded call to draw

draw is the function which update the Xwindow with the information st has,
and it is designed in a way that it must be called once in the main loop
(run function), and calling it in other places it is a waste of time.

10 years agoFix selection clearing
Roberto E. Vargas Caballero [Sun, 23 Jun 2013 10:09:19 +0000 (12:09 +0200)]
Fix selection clearing

The way st knows if there is a selection activated is checking if sel.ob.x
is equal to -1. In some parts of the code the way of disabling the selection
was only setting it to -1, but after it you can't be sure if the selection
is clearing from the terminal representation, because it is necessary mark
all the lines affected by the selection as dirty. Already there is a functon
which perform this task, selclear.

10 years agofix PageUp Modifier Mask in config.def.h
Markus Teich [Sat, 22 Jun 2013 14:22:41 +0000 (16:22 +0200)]
fix PageUp Modifier Mask in config.def.h

Signed-off-by: Christoph Lohmann <20h@r-36.net>

10 years agoFixing title setting with the title argument.
Christoph Lohmann [Sun, 9 Jun 2013 13:52:35 +0000 (15:52 +0200)]
Fixing title setting with the title argument.

10 years agoAdding xterm behaviour to setting the title.
Christoph Lohmann [Thu, 6 Jun 2013 17:09:18 +0000 (19:09 +0200)]
Adding xterm behaviour to setting the title.

Thanks Airwave!

10 years agoBumping up the xfps so mouse motion won't reap the CPU.
Christoph Lohmann [Sat, 1 Jun 2013 12:39:13 +0000 (14:39 +0200)]
Bumping up the xfps so mouse motion won't reap the CPU.

10 years agoAdding true mouse motion support.
Christoph Lohmann [Sat, 1 Jun 2013 12:37:30 +0000 (14:37 +0200)]
Adding true mouse motion support.

10 years agoThis is a shorter bit handling in MODE_MOUSE.
Christoph Lohmann [Sat, 1 Jun 2013 11:17:20 +0000 (13:17 +0200)]
This is a shorter bit handling in MODE_MOUSE.

10 years agoAdd some comments about the other mouse reporting modes.
Christoph Lohmann [Sat, 1 Jun 2013 11:13:01 +0000 (13:13 +0200)]
Add some comments about the other mouse reporting modes.

10 years agoImplementing mouse focus and all events.
Christoph Lohmann [Sat, 1 Jun 2013 11:06:53 +0000 (13:06 +0200)]
Implementing mouse focus and all events.

10 years agoFixing bad highlighting on first SNAP_WORD multiline select.
Christoph Lohmann [Sat, 1 Jun 2013 10:23:55 +0000 (12:23 +0200)]
Fixing bad highlighting on first SNAP_WORD multiline select.

10 years agoFixing the selection in a single line again.
Christoph Lohmann [Sun, 26 May 2013 14:10:22 +0000 (16:10 +0200)]
Fixing the selection in a single line again.

Thanks p37sitdu@lavabit.com!

10 years agoFixing the selection scrolling and the selection naming.
Christoph Lohmann [Sun, 26 May 2013 11:07:26 +0000 (13:07 +0200)]
Fixing the selection scrolling and the selection naming.

Thanks p37sitdu@lavabit.com!

10 years agoLazy font unloading too.
Christoph Lohmann [Sat, 11 May 2013 19:59:55 +0000 (21:59 +0200)]
Lazy font unloading too.

10 years agoLazy fontset loading.
Christoph Lohmann [Sat, 11 May 2013 06:54:26 +0000 (08:54 +0200)]
Lazy fontset loading.

Thanks Johannes Hofmann <Johannes.Hofmann@gmx.de>!

10 years agoRemoving an old select() regression.
Christoph Lohmann [Mon, 6 May 2013 17:50:14 +0000 (19:50 +0200)]
Removing an old select() regression.

10 years agoAllow more complex delimiters for word selections.
Christoph Lohmann [Sat, 4 May 2013 17:04:20 +0000 (19:04 +0200)]
Allow more complex delimiters for word selections.

Thanks Alexander Rezinsky <alexrez@gmail.com>!

10 years agoExpand the last line with '\n' in case of overselection.
Christoph Lohmann [Sat, 4 May 2013 17:00:32 +0000 (19:00 +0200)]
Expand the last line with '\n' in case of overselection.

Thanks Alexander Rezinsky <alexrez@gmail.com>!

10 years agoSelect to the end of row if end of line is reached.
Christoph Lohmann [Sat, 4 May 2013 06:05:11 +0000 (08:05 +0200)]
Select to the end of row if end of line is reached.

Thanks Alexander Rezinsky <alexrez@gmail.com>!

10 years agoBetter comments for the snapping code.
Christoph Lohmann [Sat, 4 May 2013 06:01:17 +0000 (08:01 +0200)]
Better comments for the snapping code.

10 years agoMore stable blinking.
Christoph Lohmann [Wed, 1 May 2013 11:14:46 +0000 (13:14 +0200)]
More stable blinking.

11 years agoExplaining blinking for the dummies.
Christoph Lohmann [Sun, 28 Apr 2013 19:32:42 +0000 (21:32 +0200)]
Explaining blinking for the dummies.

11 years agoSelection snapping is now considering wrapping.
Christoph Lohmann [Sun, 28 Apr 2013 16:14:15 +0000 (18:14 +0200)]
Selection snapping is now considering wrapping.

Thanks Alexander Rezinsky <alexrez@gmail.com> for mentioning this!

11 years agoAdd a possibility to modify the string sent by mouse buttons.
Christoph Lohmann [Sun, 28 Apr 2013 15:42:30 +0000 (17:42 +0200)]
Add a possibility to modify the string sent by mouse buttons.

Thanks Alexander Rezinsky <alexrez@gmail.com> for the suggestion!

11 years agoBe more efficient in blinking.
Christoph Lohmann [Fri, 26 Apr 2013 16:55:40 +0000 (18:55 +0200)]
Be more efficient in blinking.

11 years agoEnable blinking in st.
Christoph Lohmann [Fri, 26 Apr 2013 16:41:54 +0000 (18:41 +0200)]
Enable blinking in st.

11 years agoFixing the selection handling to allow one char selection.
Christoph Lohmann [Thu, 25 Apr 2013 04:28:11 +0000 (06:28 +0200)]
Fixing the selection handling to allow one char selection.

Thanks Alexander Sedov <alex0player@gmail.com> for suggesting the fix!

11 years agoFixing the selection issue in altscreens.
Christoph Lohmann [Wed, 24 Apr 2013 19:30:59 +0000 (21:30 +0200)]
Fixing the selection issue in altscreens.

11 years agoRemoved redundant check in draw code.
Alexander Sedov [Tue, 23 Apr 2013 22:34:59 +0000 (02:34 +0400)]
Removed redundant check in draw code.

We're now clearing empty areas with spaces, so there is no point to check
if character contains non-empty string.

Signed-off-by: Christoph Lohmann <20h@r-36.net>

11 years agoFix selecting clearing and BCE
Roberto E. Vargas Caballero [Tue, 23 Apr 2013 18:34:52 +0000 (20:34 +0200)]
Fix selecting clearing and BCE

The commit b78c5085f72 changed the st behaviour enabling BCE capability,
that means erase regions using background color. Problem comes when you
clear a region with a selection, because in this case the real mode of the
Glyph is not the value of term.line[y][x], due in drawregion we had enabled
the ATTR_REVERSE bit.

Signed-off-by: Christoph Lohmann <20h@r-36.net>

11 years agoNow clipping is more clear.
Christoph Lohmann [Tue, 23 Apr 2013 17:37:28 +0000 (19:37 +0200)]
Now clipping is more clear.

11 years agoRemoving the overdrawing of some fonts.
Christoph Lohmann [Tue, 23 Apr 2013 17:17:50 +0000 (19:17 +0200)]
Removing the overdrawing of some fonts.

11 years agoYes, rs2 != is2.
Christoph Lohmann [Tue, 23 Apr 2013 13:38:48 +0000 (15:38 +0200)]
Yes, rs2 != is2.

11 years agoThere is no 8bit by default and reset 8bit too.
Christoph Lohmann [Tue, 23 Apr 2013 13:33:21 +0000 (15:33 +0200)]
There is no 8bit by default and reset 8bit too.

11 years agoImplementing 8 bit mode for meta.
Christoph Lohmann [Tue, 23 Apr 2013 13:22:14 +0000 (15:22 +0200)]
Implementing 8 bit mode for meta.

11 years agoAdding wrap handling in selection.
Christoph Lohmann [Sun, 21 Apr 2013 11:01:16 +0000 (13:01 +0200)]
Adding wrap handling in selection.

11 years agoAdded support for double/triple click+dragging.
Alexander Sedov [Mon, 15 Apr 2013 06:28:31 +0000 (10:28 +0400)]
Added support for double/triple click+dragging.

Now double-click+dragging automatically snaps both ends to word boundaries
(unless on series of spaces), and triple-click selects whole lines.
As a side effect, snapping now occurs on button press, not button release
like it previously was, but I hope that won't be inconvenient for anyone.

Signed-off-by: Christoph Lohmann <20h@r-36.net>

11 years ago0.4.1 release.
Christoph Lohmann [Sat, 20 Apr 2013 13:29:39 +0000 (15:29 +0200)]
0.4.1 release.

11 years agoMaking st compile on OpenBSD again.
Christoph Lohmann [Fri, 19 Apr 2013 19:11:29 +0000 (21:11 +0200)]
Making st compile on OpenBSD again.

11 years agoSelection now handles empty lines less counter-intuitively.
Alexander Sedov [Thu, 18 Apr 2013 08:47:23 +0000 (12:47 +0400)]
Selection now handles empty lines less counter-intuitively.

Now, when you are selecting a region, you will get all empty lines that happen
to be in it, including trailing ones. Last line terminator is omitted as it previously
was, though.

Signed-off-by: Christoph Lohmann <20h@r-36.net>

11 years agoRemoving trailing whitespace.
Christoph Lohmann [Thu, 18 Apr 2013 04:51:18 +0000 (06:51 +0200)]
Removing trailing whitespace.

11 years agoGot rid of redundant Glyph state.
Alexander Sedov [Mon, 15 Apr 2013 13:13:19 +0000 (17:13 +0400)]
Got rid of redundant Glyph state.

Now, newly allocated Glyphs are set to spaces and current cursor colors
with tclearregion() routine.

Signed-off-by: Christoph Lohmann <20h@r-36.net>

11 years agoRemoving unneeded comments.
Christoph Lohmann [Thu, 18 Apr 2013 04:41:54 +0000 (06:41 +0200)]
Removing unneeded comments.

11 years agoGot rid of code duplication in tnew() and tresize().
Alexander Sedov [Sun, 14 Apr 2013 20:12:10 +0000 (00:12 +0400)]
Got rid of code duplication in tnew() and tresize().

Signed-off-by: Christoph Lohmann <20h@r-36.net>

11 years agoStrip trailing spaces from lines when copying selection.
Alexander Sedov [Sun, 14 Apr 2013 19:17:44 +0000 (23:17 +0400)]
Strip trailing spaces from lines when copying selection.

Signed-off-by: Christoph Lohmann <20h@r-36.net>

11 years agoEnable BCE everywhere.
Christoph Lohmann [Sun, 14 Apr 2013 16:30:10 +0000 (18:30 +0200)]
Enable BCE everywhere.

11 years agoFix the geometry handling.
Christoph Lohmann [Sat, 13 Apr 2013 13:24:26 +0000 (15:24 +0200)]
Fix the geometry handling.

11 years ago\033 should be used in printf in the FAQ.
Christoph Lohmann [Sat, 13 Apr 2013 10:26:17 +0000 (12:26 +0200)]
\033 should be used in printf in the FAQ.

Never apply patches of Apple users without shouting at them. The basic rule of
nature is that when you apply Appl users patches without shouting at them that
something will go horribly wrong.

11 years agoResize now uses xclear().
Christoph Lohmann [Sat, 13 Apr 2013 07:49:11 +0000 (09:49 +0200)]
Resize now uses xclear().

11 years agoDrawing a more visible rectangle as cursor on unfocus.
Christoph Lohmann [Sat, 13 Apr 2013 07:44:00 +0000 (09:44 +0200)]
Drawing a more visible rectangle as cursor on unfocus.

To have a more visible cursor on unfocused windows this patch makes st draw a
rectangle around the terminal cell.

Thanks Mark Hills <mark@xwax.org> for the suggestion!

11 years agoPatching while not really woken up.
Christoph Lohmann [Sat, 13 Apr 2013 06:51:30 +0000 (08:51 +0200)]
Patching while not really woken up.

11 years agoMinor naming issue fixed.
Christoph Lohmann [Sat, 13 Apr 2013 06:50:38 +0000 (08:50 +0200)]
Minor naming issue fixed.

11 years agoMaking the copy and pasting consistent.
Christoph Lohmann [Sat, 13 Apr 2013 06:48:17 +0000 (08:48 +0200)]
Making the copy and pasting consistent.

The copying and pasting in the terminald and GUI world is flawed. Due to the
discussion on the mailinglist it seems that sending '\n' is what GUIs expect
and '\r' what terminal applications want. St now implements that behaviour.

11 years agoConvert FAQ into Markdown, to make it easier to integrate it into http://st.suckless...
Kai Hendry [Tue, 9 Apr 2013 21:13:54 +0000 (22:13 +0100)]
Convert FAQ into Markdown, to make it easier to integrate it into st.suckless.org/

Signed-off-by: Christoph Lohmann <20h@r-36.net>

11 years agoMake st work with a plain -e command.
Christoph Lohmann [Wed, 10 Apr 2013 15:48:32 +0000 (17:48 +0200)]
Make st work with a plain -e command.

11 years agoAdopting arg.h with more flexible cmd handling.
Christoph Lohmann [Wed, 3 Apr 2013 19:00:38 +0000 (21:00 +0200)]
Adopting arg.h with more flexible cmd handling.

11 years agoAdd an option to disable alternative screens.
Christoph Lohmann [Wed, 3 Apr 2013 18:42:27 +0000 (20:42 +0200)]
Add an option to disable alternative screens.

11 years agoUpdating the TODO file for after 0.4.
Christoph Lohmann [Fri, 29 Mar 2013 18:44:37 +0000 (19:44 +0100)]
Updating the TODO file for after 0.4.

11 years agoReleasing 0.4.
Christoph Lohmann [Fri, 29 Mar 2013 18:13:26 +0000 (19:13 +0100)]
Releasing 0.4.

11 years agoAdd the possibility to have default highlight colors.
Christoph Lohmann [Fri, 29 Mar 2013 18:01:24 +0000 (19:01 +0100)]
Add the possibility to have default highlight colors.

Thanks to stargrave@stargrave.org for the suggestion!

11 years agoAdding PgUp + Ctrl.
Christoph Lohmann [Fri, 29 Mar 2013 17:45:09 +0000 (18:45 +0100)]
Adding PgUp + Ctrl.

Thanks stargrave@stargrave.org!

11 years agoAdding PgUp and PgDown + Ctrl to config.def.h
Christoph Lohmann [Fri, 29 Mar 2013 17:43:32 +0000 (18:43 +0100)]
Adding PgUp and PgDown + Ctrl to config.def.h

Thanks stargrave@stargrave.org!

11 years agoRemoving an undefined case. just do regular selections.
Christoph Lohmann [Fri, 29 Mar 2013 17:39:01 +0000 (18:39 +0100)]
Removing an undefined case. just do regular selections.

11 years agoMaking rectangular selection work again.
Christoph Lohmann [Wed, 20 Mar 2013 20:19:28 +0000 (21:19 +0100)]
Making rectangular selection work again.

People sending me patches against strange revisions and basing on their own
revisions make me having to reapply them. Then such errors appear.

Thanks Alexander Sedov <alex0player@gmail.com> for noticing this.

11 years agoPange seems to use ascent + descent instead of height.
Christoph Lohmann [Sun, 10 Mar 2013 20:16:51 +0000 (21:16 +0100)]
Pange seems to use ascent + descent instead of height.

Thanks Bobby Powers <bobbypowers@gmail.com> for noticing this!

11 years agoMaking st compile on OS X.
Christoph Lohmann [Tue, 5 Mar 2013 21:12:11 +0000 (22:12 +0100)]
Making st compile on OS X.

11 years agoUsing strsep and fixing null termination in csiparse.
Christoph Lohmann [Tue, 26 Feb 2013 20:43:40 +0000 (21:43 +0100)]
Using strsep and fixing null termination in csiparse.

Thanks for the hint from Alexander Sedov <alex0player@gmail.com>!

11 years agoChanging the way how paste is handled, just for the nano people.
Christoph Lohmann [Tue, 26 Feb 2013 18:08:51 +0000 (19:08 +0100)]
Changing the way how paste is handled, just for the nano people.

11 years agoFixing a bug while parsing empty arguments in csiparse.
Christoph Lohmann [Tue, 26 Feb 2013 18:07:23 +0000 (19:07 +0100)]
Fixing a bug while parsing empty arguments in csiparse.

11 years agoFixing bugs in the strtol and strtok_r replacements.
Christoph Lohmann [Tue, 26 Feb 2013 17:19:44 +0000 (18:19 +0100)]
Fixing bugs in the strtol and strtok_r replacements.

Thanks "Roberto E. Vargas Caballero" <k0ga@shike2.com> for the comments!

11 years agoUsing strtok_r for the string parsing.
Christoph Lohmann [Mon, 25 Feb 2013 12:36:40 +0000 (13:36 +0100)]
Using strtok_r for the string parsing.

11 years agoUsing strtol with overflow checking.
Christoph Lohmann [Mon, 25 Feb 2013 12:23:56 +0000 (13:23 +0100)]
Using strtol with overflow checking.

11 years agoAdd insert for the primary clipboard to MOD + Shift + Ins.
Christoph Lohmann [Sat, 23 Feb 2013 20:50:13 +0000 (21:50 +0100)]
Add insert for the primary clipboard to MOD + Shift + Ins.

Thanks Mantas Mikulėnas <grawity@gmail.com> for the patch!

11 years agoRemoving dbe and introducing umlauts to titles.
Christoph Lohmann [Sat, 23 Feb 2013 20:44:06 +0000 (21:44 +0100)]
Removing dbe and introducing umlauts to titles.

Thanks Alexander Sedov <alex0player@gmail.com> for the title patch!

11 years agoAdd umlaut support for title change.
Christoph Lohmann [Sat, 23 Feb 2013 20:20:21 +0000 (21:20 +0100)]
Add umlaut support for title change.

Thanks Alexander Sedov <alex0player@gmail.com>!

11 years agoReplace parse_int with atoi().
Christoph Lohmann [Sat, 23 Feb 2013 20:17:25 +0000 (21:17 +0100)]
Replace parse_int with atoi().

11 years agoAdded basic xterm-ish palette swap support.
Alexander Sedov [Tue, 19 Feb 2013 17:39:13 +0000 (21:39 +0400)]
Added basic xterm-ish palette swap support.

Signed-off-by: Christoph Lohmann <20h@r-36.net>

11 years agoImplement rectangular mouse selection.
Christoph Lohmann [Tue, 19 Feb 2013 18:08:41 +0000 (19:08 +0100)]
Implement rectangular mouse selection.

Thanks Alexander Sedov <alex0player@gmail.com>!

11 years agoensure that the italic font has the same weight as the normal font
joe9 [Mon, 18 Feb 2013 17:31:29 +0000 (12:31 -0500)]
ensure that the italic font has the same weight as the normal font

The specified font[] pattern need not have a medium weight. It could be
specified as a number too or have a different weight other than medium.

Signed-off-by: Christoph Lohmann <20h@r-36.net>

11 years agoStyle inquisition.
Christoph Lohmann [Tue, 19 Feb 2013 15:04:54 +0000 (16:04 +0100)]
Style inquisition.

11 years agoFixing the reverse mode of st colors.
Christoph Lohmann [Tue, 19 Feb 2013 14:51:25 +0000 (15:51 +0100)]
Fixing the reverse mode of st colors.

Thanks Alexander Sedov <alex0player@gmail.com> for finding this!

11 years agoAdding a way to ignore bits in the state.
Christoph Lohmann [Sat, 16 Feb 2013 12:57:12 +0000 (13:57 +0100)]
Adding a way to ignore bits in the state.

11 years agoStyle inquisition.
Christoph Lohmann [Fri, 15 Feb 2013 18:36:20 +0000 (19:36 +0100)]
Style inquisition.

11 years agoThe refresh rate for the action needs to be high too.
Christoph Lohmann [Fri, 15 Feb 2013 18:34:53 +0000 (19:34 +0100)]
The refresh rate for the action needs to be high too.

11 years agoChanging the fps to something reasonable high.
Christoph Lohmann [Fri, 15 Feb 2013 18:32:37 +0000 (19:32 +0100)]
Changing the fps to something reasonable high.

11 years agoDoing it like the new run() was proposed.
Christoph Lohmann [Fri, 15 Feb 2013 18:30:43 +0000 (19:30 +0100)]
Doing it like the new run() was proposed.

11 years agoAdding a more efficient drawing code.
Christoph Lohmann [Fri, 15 Feb 2013 18:10:22 +0000 (19:10 +0100)]
Adding a more efficient drawing code.

Thanks Mihail Zenkov <mihail.zenkov@gmail.com> for giving the hint!

11 years agoTmux wants this to be mutually exclusive.
Christoph Lohmann [Fri, 15 Feb 2013 16:45:38 +0000 (17:45 +0100)]
Tmux wants this to be mutually exclusive.

Thanks Egmont Koblinger <egmont@gmail.com> for noticing this!

11 years agoAdding mor explict font patterns.
Christoph Lohmann [Wed, 13 Feb 2013 20:35:27 +0000 (21:35 +0100)]
Adding mor explict font patterns.

11 years agoMaking st not activate the cursor in case of Mod + k in dwm.
Christoph Lohmann [Mon, 11 Feb 2013 21:20:16 +0000 (22:20 +0100)]
Making st not activate the cursor in case of Mod + k in dwm.

Thanks Jens Nyberg <jens.nyberg@gmail.com>!

11 years agoSetting the surrounding border to defaultbg.
Christoph Lohmann [Sun, 10 Feb 2013 15:36:03 +0000 (16:36 +0100)]
Setting the surrounding border to defaultbg.

Thanks Stephen Caraher <moskvax@gmail.com>!

11 years agoRemoving some debug messages.
Christoph Lohmann [Fri, 8 Feb 2013 19:24:26 +0000 (20:24 +0100)]
Removing some debug messages.