1138 Commits (custom)
 

Author SHA1 Message Date
noname@inventati.org 84c756b97e Use LEN(dc.col) instead of LEN(colorname).
LEN(colorname) may be below 256 for some configurations.
9 years ago
noname@inventati.org 2fdcc5e5f6 Remove WIN_REDRAW flag.
WIN_REDRAW flag was not used since introduction of Xdbe
in commit 94771d0588
9 years ago
noname@inventati.org ab69ea89b7 Place memset arguments in the correct order. 9 years ago
noname@inventati.org 5528280fae Remove explicit 'return' from 'void' functions. 9 years ago
noname@inventati.org 6dc2b546ec Increment accuaracy in drawtime calculation
This way is a bit more accurate.
9 years ago
noname@inventati.org c27c731b9f Monotonic clock cannot jump backwards.
The check was introduced back when st used gettimeofday.
The condition is also modified to increment the accuaracy of the
calculation.
9 years ago
noname@inventati.org 6ee56d6590 Place tlinelen type on separate line. 9 years ago
Roberto E. Vargas Caballero 215bdb2da3 Add tty line support
Not always is desirable to create a pseudo terminal, and some times
we want to open a terminal emulator over a tty line. With this new
patch is possible to do someting like:

	$ st -l /dev/ttyS0 115200

Without this option was needed to launch another terminal emulator
over st (for example minicom, picocom, cu, ...).
9 years ago
sin 56abffb4b6 Fix memmove() invocation with src/dst being NULL
This fixes a segmentation fault on some systems.
9 years ago
noname@inventati.org aff35af275 Use as command arguments the remaining parameters
This change allows execute st as 'st mutt' while it keeps the
compability with xterm and urxt.
9 years ago
Roberto E. Vargas Caballero 83e73c6242 Merge branch 'master' of ssh://suckless.org/gitrepos/st 9 years ago
Markus Wichmann 42fa1f5ce4 Implement most ICCCM rules for selection handling.
ICCCM mandates the use of real timestamps to interact with the
selection, to rule out race conditions if the clients are run at
different speeds. I have implemented the low hanging fruit, putting the
timestamps into text selection. Also, ICCCM mandates a check for whether
XSetSelectionOwner() worked. Not sure my version is correct, though.
9 years ago
Roberto E. Vargas Caballero 23ed12857f Merge branch 'master' of ssh://suckless.org/gitrepos/st 9 years ago
noname@inventati.org 9eb70a2d3e Do not use tmoveto in tputtab.
tmoveto resets CURSOR_WRAPNEXT.

Simple testcase:

for i in $(seq 1 200); do
	printf '\t.';
	usleep 100000;
	printf '\t@';
	usleep 100000;
done

In st executing this script causes @ and . to overwrite each other in
the last column.
9 years ago
noname@inventati.org 9619760e12 tresize: remove unnecessary if 9 years ago
noname@inventati.org a6af2cc469 Remove old TODO entry.
It probably refers to
http://lists.suckless.org/dev/1211/13427.html
and does not seem like a bug in st.
9 years ago
noname@inventati.org b94ad75e5d Remove 'titles' variable.
We do not free it until exit anyway.
9 years ago
noname@inventati.org e6dd0f825d Remove useless if in tstrsequence. 9 years ago
noname@inventati.org b0310fba5d Simplify tmoveto.
LIMIT returns value. This fact is already used in x2col and y2row.
9 years ago
noname@inventati.org 9d1495f9ee Fix typo.
It seems that LICENSE files are more common than LICENCE files.
At least this patch makes spelling consistent.
9 years ago
noname@inventati.org c569e3146e Remove 'slide' variable in tresize. 9 years ago
noname@inventati.org 39ae1a4de5 Move tresize comments around. 9 years ago
noname@inventati.org 6352502d64 tresize: move for loop outside if
There is no need to check that slide > 0 before executing loop.
If slide <= 0, loop stops immediately.
9 years ago
noname@inventati.org b9390a5496 Simplify loop condition. 9 years ago
noname@inventati.org d2937b05ae Remove unnecessary XFilterEvent call.
XFilterEvent usually filters KeyPress events according to input method.
At this point the window is not mapped. The only events that we process
are ConfigureNotify and MapNotify. They should not be filtered by input
method.
9 years ago
noname@inventati.org d3e0f3444b Use do..while in window mapping loop. 9 years ago
Omar Sandoval ecac5ee35e Make DECSCUSR thickness configurable 9 years ago
noname 93b54cfcc4 Use MAX macro where possible. 9 years ago
noname 6f5f770186 Remove 'xloadfontset' function.
It was used only once and its return value was ignored.
9 years ago
noname 6524f022f7 Remove keywords from function definitions. 9 years ago
noname 9305f3c184 Remove variable names from function declarations. 9 years ago
Roberto E. Vargas Caballero 5bb90125c8 Remove redundant control check
control was set, but it was not ever used because it was set
again some lines later.
9 years ago
noname 69d1fe06a9 Fixed STR sequence termination condition
ascii code may only be checked for characters that have length equal to
1, not width equal to 1
9 years ago
Roberto E. Vargas Caballero 288f80cb06 Remove strsep() call
strsep() is not a POSIX function, and it means that every system
needs different defines to expose it. If the prototype of strsep
is not exposed then an ugly int/pointer is done and it might mean
a crash. The best solution?, to remove the strsep and make a custom
loop. If C programmers cannot do this kind of loops without calling
a library function, then maybe we should move all the suckless
software to Java.
9 years ago
Roberto E. Vargas Caballero c9357a8edf Merge remote-tracking branch 'origin/master' 9 years ago
LemonBoy 580302f317 Support the DECSCUSR CSI escape sequence 9 years ago
Christoph Lohmann 246c3481d7 arg.h wasn't used for dist. 9 years ago
Alex Pilon b341e51351 Handle pasting of empty selection.
Otherwise, pasting the X11 primary selection when empty results an
error and Xlib forcibly exits.

Signed-off-by: Christoph Lohmann <20h@r-36.net>
9 years ago
Roberto E. Vargas Caballero 86d1e432a8 Support XA_STRING in notify request
Some programs can only deal with XA_STRING, and it makes impossible st
be able of copying to them. This patch makes st answer also to XA_STRING,
althought it sends utf8 strings. It is not a problem because moderm
applications must support utf8.
9 years ago
Christoph Lohmann c7e24e44c8 TODO: Fix fontconfig 9 years ago
Christoph Lohmann 5406e655da Add the new selection shortcuts to the manpage. 9 years ago
Christoph Lohmann 72d2accc22 Glibc wants me to use _DEFAULT_SOURCe. I do obey. 9 years ago
Christoph Lohmann 2fcfea1bf1 Add Mod + Shift + c/v and no selclear.
Thanks to Alex Pilon <alp@alexpilon.ca>!

Now there is a distinction between the primary and clipboard selection. With
Mod + Shift + c/v the clipboard is handled. The old Insert behavious does
reside.
9 years ago
Roberto E. Vargas Caballero b746816b78 Allow combinations with Backspace
XN_ANY_MOD makes that any combination of backspace will return always
DEL. This patch lets to X to decide which value returns.
9 years ago
Alexander Huemer 4f60751440 FAQ: fix wording 9 years ago
Ivan Delalande f5075a9e9d Backspace value shouldn't depend on keypad state 9 years ago
Christoph Lohmann c87d45466b Merge branch 'master' of ssh://suckless.org/gitrepos/st 9 years ago
Christoph Lohmann 28259f5750 St now does only set PRIMARY on selection.
http://standards.freedesktop.org/clipboards-spec/clipboards-latest.txt
9 years ago
Alexander Huemer adeb2e95d6 FAQ: fix wording 9 years ago
Christoph Lohmann 9494362d0b Fixing the C reading test.
This was a test to see if anyone actually reads what is submitted. The list of
people not contributing will be valuable in the future.
9 years ago