Commit Graph

1378 Commits

Author SHA1 Message Date
Luke Smith
cd28e535f8
link 2020-02-07 18:46:12 -05:00
Quentin Rameau
26cdfebf31 x: fix XIM handling
Do not try to set specific IM method, let the user specify it with
XMODIFIERS.

If the requested method is not available or opening fails, fallback to
the default input handler and register a handler on the new IM server
availability signal.

Do the same when the input server is closed and (re)started.
2020-02-02 22:56:51 +01:00
Quentin Rameau
cd785755f2 x: check we still have an XIC context before accessing it 2020-02-02 22:56:51 +01:00
Quentin Rameau
2cb539142b x: do not instantiate a new nested list on each cursor move 2020-02-02 22:56:51 +01:00
Quentin Rameau
99de333951 x: move IME variables into XWindow ime embedded struct 2020-02-02 22:56:51 +01:00
Luke Smith
6852d5ecfc
note on crashing error 2020-02-01 18:33:22 -05:00
Ivan Tham
895e5b50a8 Increase XmbLookupString buffer
Current buffer is too short to input medium to long sentences from IME.
Input with longer text will show the wrong input, taking 64 instead of
32 bytes should be enough for most of the cases. Broken cases before,

Chinese (taken from song 也可以)
可不可以轻轻的松开自己

Japanese (taken from bootleggers rom quote)
あなたは家のように感じる
2020-01-18 14:21:50 +01:00
Hiltjo Posthuma
384830110b update FAQ
- add common question about the w3m image drawing hack.
- remove some bad advise about $TERM.
- change some links to https.
2019-11-17 20:04:52 +01:00
Avi Halachmi (:avih)
2e54a21b5a OSC 52 - copy to clipboard: don't limit to 382 bytes
Strings which an application sends to the terminal in OSC, DCS, etc
are typically small (title, colors, etc) but one exception is OSC 52
which copies text to the clipboard, and is used for instance by tmux.

Previously st cropped these strings at 512 bytes, which for OSC 52
limited the copied text to 382 bytes (remaining buffer space before
base64). This made it less useful than it can be.

Now it's a dynamic growing buffer. It remains allocated after use,
resets to 512 when a new string starts, or leaked on exit.

Resetting/deallocating the buffer right after use (at strhandle) is
possible with some more code, however, it doesn't always end up used,
and to cover those cases too will require even more code, so resetting
only on new string is good enough for now.
2019-11-10 22:45:54 +01:00
Hiltjo Posthuma
289c52b7aa CSIEscape, STREscape: use size_t for buffer length 2019-11-10 22:45:54 +01:00
Avi Halachmi (:avih)
7ceb3d1f72 STREscape: don't trim prematurely
STRescape holds strings in escape sequences such as OSC and DCS, and
its buffer is 512 bytes.

If the input is too big then trailing chars are ignored, but the test
was off-by-1 such that it took 510 chars instead of 511 (before a
terminating NULL is added).

Now the full size can be utilized.
2019-11-10 22:45:54 +01:00
Avi Halachmi (:avih)
ea4d933ed9 base64dec: don't read out of bounds
Previously, base64dec checked terminating input '\0' every 4 calls to
base64dec_getc, where the latter progressed one or more chars on each
call, and could read past '\0' in the way it was used.

The input to base64dec currently comes only from OSC 52 escape seq
(copy to clipboard), and reading past '\0' or even past the buffer
boundary was easy to trigger.

Also, even if we could trust external input to be valid base64, there
are different base64 standards, and not all of them require padding
to 4 bytes blocks (using trailing '=' chars).

It didn't affect short OSC 52 strings because the buffer is initialized
to 0's, so typically it did stop within the buffer, but if the string
was trimmed to fit (the buffer is 512 bytes) then it did also read past
the end of the buffer, and the decoded suffix ended up arbitrary.

This patch makes base64dec_getc not progress past '\0', and instead
produce fake trailing padding of '='.

Additionally, at base64dec, if padding is detected at the first or
second byte of a quartet, then we identify it as invalid and abort
(a valid quartet has at least two leading non-padding bytes).
2019-11-10 22:45:54 +01:00
Sebastian J. Bronner
83866428de Fix tmux terminfo extensions Se and Ss
The tmux terminfo extensions Ss and Se are currently specified as
booleans in `st.info`. They should be strings. See
eeedb43ae8/tty-term.c
lines 254 and 265.

I have used the values from
https://invisible-island.net/ncurses/terminfo.src.html#toc-_S_I_M_P_L_E_T_E_R_M
for this patch.
2019-11-05 19:51:35 +01:00
Ingo Lohmar
1f09f0b0bb apply hints before initial mapping (ICCCM)
For WM_CLASS this is mentioned in the ICCCM docs
https://tronche.com/gui/x/icccm/sec-4.html#s-4.1.2.5
(third sentence).

When changing the WM_CLASS from the command line, this is necessary for
window managers to pick it up before applying class-based rules.
2019-10-26 11:47:24 +02:00
Avi Halachmi (:avih)
a2c479c4c8 mouse shortcuts: allow using forcemousemod (e.g. shift)
The recent mouse shurtcuts commits allow customization, but ignore
forcemousemod mask (default: shift) as a modifier, for no good reason
other than following the behavior of the KB shortcuts.

Allow using forcemousemod too, which now can be used to invoke
different shortcuts, though the automatic effect of forcemousemod will
be lost for buttons which use mask with forcemousemod.

E.g. the default is:

static uint forcemousemod = ShiftMask;
...
{ XK_ANY_MOD,           Button4, ttysend,        {.s = "\031"} },
...

where ttysend will be invoked for button4 with any mod when not in mouse
mode, and with shift when in mouse mode.

Now it's possible to do this:
{ ShiftMask,            Button4, ttysend,        {.s = "foo"} },
{ XK_ANY_MOD,           Button4, ttysend,        {.s = "\031"} },

Which will invoke ttysend("foo") while shift is held and ttysend("\031")
otherwise. Shift still overrides mouse mode, but will now send "foo".

Previously with this setup the second binding was always invoked
because the forceousemod mask was always removed from the event.

Buttons which don't use forcemousemod behave the same as before.

This is useful e.g. for the scrollback mouse patch, which wants to
configure shift+wheel for scrollback, while keeping the normal behavior
without shift.
2019-10-24 15:34:25 +02:00
Avi Halachmi (:avih)
d2b75db8d7 mouse shortcuts: don't hardcode selpaste
Because selpaste is activated on release, a release flag was added to
mouse shortcuts which controls whether activation is on press/release,
and selpaste binding to button2 was moved to config.h .

button1 remains the only hardcoded mouse button - for selection + copy.
2019-10-13 21:46:31 +02:00
Avi Halachmi (:avih)
b6d280de6d mouse shortcuts: allow override for all shortcuts
Allow forceselmod to override all mouse shortcuts rather than only
selection, and rename it to forcemousemod as it's now more appropriate.

This will affect mouse shortcuts which use mask other than XK_ANY_MOD.

This does not affect the default behavior because the default mouse
shortcuts (wheel) use XK_ANY_MOD, where forceselmod already activated
the override also before this change.

Previously, if a mouse shortcut was configured with a specific mod and
forceselmod was held, then the shortcut did not execute unless the
configured mod included forceselmod.
2019-10-13 21:46:31 +02:00
Avi Halachmi (:avih)
ba7f4d69af mouse shortcuts: allow same functions as kb shortcuts
Previously mouse shortcuts supported only ttywrite.

This required adding an "Arg" function ttysend - which does what the
original mouse shortcuts did.
2019-10-13 21:46:31 +02:00
Luke Smith
131bdf67fd
Merge pull request #126 from jcapiitao/handle_hash_based_urls
Add hash symbol in openurlcmd and copyurlcmd regexp
2019-09-10 07:26:18 -04:00
Joel Capitao
63849e346b Add hash symbol in openurlcmd and copyurlcmd regexp
This enables hash-based urls support.
2019-09-10 11:15:33 +02:00
Hiltjo Posthuma
2b8333f553 config.def.h: remove crlf value section
this is not used anymore.

patch sent as an ed script using RFC2549 by k0ga.
2019-08-26 17:58:47 +02:00
Luke Smith
4a9b405ab0
Merge pull request #109 from sarpik/patch-1
Add background, foreground, cursor color example
2019-07-01 08:43:47 -04:00
Kipras Melnikovas
7150fd6b35
Add background, foreground, cursor color example
You might want to update every theme with different colors - I just didn't knew which ones to put there

(or maybe just mimic `color0` as `background` & `color15` as `foreground` and `cursorColor` (see the diff @ #108))

Fixes #108 and #97
2019-06-29 15:21:00 +03:00
Luke Smith
cad53235df
Merge pull request #102 from undx/undx/pr-fix-promtp-w-space
fix excessive slurping when prompt starts w/ space(s)
2019-06-21 14:48:05 -04:00
undx
1264ad0515 fix excessive slurping when prompt starts w/ space(s) 2019-06-21 20:35:04 +02:00
Luke Smith
7d5e65282e
Merge pull request #101 from undx/pr
fix prompt starting with space(s)
2019-06-21 12:02:07 -04:00
undx
bf29538fdd fix prompt starting with space(s) 2019-06-21 17:39:52 +02:00
Luke Smith
5c49ff8012
Merge pull request #99 from rjl6789/stluke-pull
additional Xresources item compatible with font2 patch
2019-06-18 09:01:24 -04:00
rjl6789
fb95bcb8a6 additional Xresources item compatible with font2 patch 2019-06-18 09:08:41 +01:00
Luke Smith
261652b42f
case insensitivity 2019-06-06 11:38:47 -04:00
Luke Smith
60506bfc82
Merge pull request #96 from jonbulica99/patch-font2
Apply font2 patch
2019-06-04 16:22:50 -04:00
Jon Bulica
5728d045eb apply font2 patch 2019-06-03 23:58:12 +02:00
Luke Smith
3c0a2e8d30
Merge pull request #95 from jonbulica99/master
Apply anysize patch so that the window size is not dependent of text size
2019-06-02 16:41:56 -04:00
Jon Bulica
9449c5787f apply anysize patch 2019-06-02 22:29:00 +02:00
Luke Smith
e2046555c0
Merge pull request #88 from lucaslugao/master
Premultiply background RGB values if alpha is used
2019-05-23 23:02:08 -04:00
Lucas Lugao
ffcacfa98d Premultiply background RGB values if alpha is used 2019-05-21 17:17:13 +02:00
Luke Smith
d06bf1fd7e
magnet links detectable 2019-05-19 20:16:13 -04:00
Joseph Benden
a96c33e81e Add interval timer to XIM updates
Signed-off-by: Joseph Benden <joe@benden.us>
2019-05-17 11:54:04 -07:00
Hiltjo Posthuma
caa1d8fbea FAQ: add entry about color emoji Xft bug
This has been asked many times on IRC and the mailinglist. Make it easier to
find information about this particular Xft issue by adding it to the FAQ.
2019-05-17 13:00:10 +02:00
Luke Smith
6c0c86191c
Merge pull request #79 from rjl6789/virgin
default fg, bg and cursor - modified so works with .Xresources
2019-05-12 09:14:18 -04:00
rjl6789
55405e17f1 correct fg,bg,cs defaults so will work with Xresources and default is gruvbox 2019-05-11 12:11:49 +01:00
rjl6789
6ecb8b1595 make config consistent with virgin lukesmith st repo 2019-05-11 12:05:30 +01:00
rjl6789
ea40e61a8d Merge remote-tracking branch 'upstream/master' into virgin 2019-05-11 12:01:58 +01:00
Luke Smith
da82328295
Merge pull request #77 from otlin100/luke
allow '%' in URLs
2019-05-10 12:54:26 -04:00
otlin100
3b6662093c allow '%' in URLs 2019-05-10 18:46:14 +02:00
Luke Smith
9fb50579c1
Merge pull request #75 from Lukeblanes/master
Include links with port numbers
2019-05-10 09:54:10 -04:00
Luke
5754699235 Include links with port numbers 2019-05-10 14:45:49 +02:00
rjl6789
9b18354de6 corrected fg and bg defaults again 2019-05-09 17:55:26 +01:00
Luke Smith
8c119155ba
original color 2019-05-09 07:38:23 -04:00
Luke Smith
be3ea16279
Merge pull request #72 from rjl6789/master
correct colorname declaration
2019-05-09 07:30:37 -04:00