aboutsummaryrefslogtreecommitdiff
path: root/st.c
AgeCommit message (Expand)AuthorFilesLines
2019-03-15use iswspace()/iswpunct() to find word delimitersLauri Tirkkonen1-1/+2
2019-03-15replace utf8strchr with wcschrLauri Tirkkonen1-19/+1
2019-03-13be silent about explicitly unhandled mouse modesLauri Tirkkonen1-0/+1
2019-03-03style: remove double empty newlinesHiltjo Posthuma1-1/+0
2019-02-12better Input Method Editor (IME) supportIvan Tham1-0/+1
2018-12-11output child WEXITSTATUS/WTERMSIG on abnormal terminationLauri Tirkkonen1-2/+4
2018-11-04st: small typofix in commentHiltjo Posthuma1-1/+1
2018-09-11small code-style fixHiltjo Posthuma1-1/+2
2018-09-11Remove the ISO 14755 featureQuentin Rameau1-26/+0
2018-05-25code-style for pledge(2)Hiltjo Posthuma1-4/+4
2018-05-25Pledge on OpenBSDHiltjo Posthuma1-0/+8
2018-03-29error message style and use strerror in a few placesHiltjo Posthuma1-10/+11
2018-03-29set sel.alt in selstart instead of selextendDaniel Tameling1-1/+1
2018-03-17selextend: clarify: !sel.mode == SEL_IDLEHiltjo Posthuma1-1/+1
2018-03-16minor code-style: whitespace fixesHiltjo Posthuma1-2/+1
2018-03-09regression: include termios.h for tcsendbreak etcHiltjo Posthuma1-0/+1
2018-02-25General cleanupDevin J. Pohly1-1/+0
2018-02-25Clean up #includesDevin J. Pohly1-7/+0
2018-02-25Reduce visibility wherever possibleDevin J. Pohly1-1/+30
2018-02-25Limit usage of extern to config.h globalsDevin J. Pohly1-12/+17
2018-02-25Remove x.c dependency on termDevin J. Pohly1-1/+21
2018-02-25Pull term references out of xdrawcursorDevin J. Pohly1-1/+14
2018-02-25Move win-agnostic parts of draw/drawregion to st.cDevin J. Pohly1-0/+25
2018-02-25Split mode bits between Term and TermWindowDevin J. Pohly1-32/+32
2018-02-25Move CRLF input processing into ttywriteDevin J. Pohly1-3/+29
2018-02-25Move terminal echo logic into st.cDevin J. Pohly1-14/+9
2018-02-25Move remaining selection mode logic into selextendDevin J. Pohly1-2/+12
2018-02-25Move terminal-related selection logic into st.cDevin J. Pohly1-0/+37
2018-02-25Move X-specific selection info into XSelectionDevin J. Pohly1-4/+0
2018-02-25Have selected() check whether selection existsDevin J. Pohly1-1/+2
2018-02-25Rely on ttyresize to set tty sizeDevin J. Pohly1-2/+1
2018-02-25Remove X and fontconfig from st.cDevin J. Pohly1-5/+0
2018-02-25Remove Time argument from xsetselDevin J. Pohly1-1/+1
2018-02-25Make win variable internal to x.cDevin J. Pohly1-5/+1
2018-02-25Move config.h include from st.c to x.cDevin J. Pohly1-43/+4
2018-02-25Factor out equivalent code from ttyread/ttysendDevin J. Pohly1-61/+40
2018-02-25Move opt_* into same file as main()/run()Devin J. Pohly1-30/+20
2018-02-25Move key-matching functions into x.cDevin J. Pohly1-56/+2
2018-02-25Pass new dimensions into ttyresizeDevin J. Pohly1-3/+3
2018-02-25Move window-manipulating functions into x.cDevin J. Pohly1-36/+0
2018-02-25Move font/fontspec variables into x.c and XWindowDevin J. Pohly1-11/+0
2018-02-25Move window urgency handling entirely into x.cDevin J. Pohly1-4/+1
2018-02-25Move zoom functions into x.cDevin J. Pohly1-35/+1
2018-02-25Move usage() to be with run() in x.cDevin J. Pohly1-15/+0
2018-02-25Call xsetenv() in main process instead of childDevin J. Pohly1-6/+2
2017-09-15base64dec: skip non-printable characters like \r\nSuraj N. Kurapati1-5/+12
2017-07-12Revert "Add bold off SGR"Quentin Rameau1-3/+0
2017-06-03Add bold off SGRQuentin Rameau1-0/+3
2017-03-29Fix commented out codeAlexander Krotov1-1/+1
2017-03-19Support xterm Ms feature to set clipboardosandov@osandov.com1-0/+57