Wez Furlong
df99a4f3fb
fixup re-export of ExitStatus on unix
2019-02-17 09:07:31 -08:00
Wez Furlong
b387464054
implement pty enabled spawner for win32
...
We can now start a process with a new pty, but fail when we reach
the shader spec. Progress!
2019-02-17 09:05:37 -08:00
Wez Furlong
c650cbbf08
flesh out some of the windows pty impl
2019-02-16 23:46:18 -08:00
Wez Furlong
f976ca6e23
add rusttype rasterizer
2019-02-16 21:29:04 -08:00
Wez Furlong
12e2dcd181
add incomplete shaping plumbing
2019-02-16 17:12:54 -08:00
Wez Furlong
a4e1bd827e
start integrating rusttype and font_loader for windows
2019-02-16 16:15:39 -08:00
Wez Furlong
434c1a1664
wezterm.exe now links, but is missing lots of impl
2019-02-16 15:21:28 -08:00
Wez Furlong
70a98b63a7
more stubs for win pty
2019-02-16 15:15:51 -08:00
Wez Furlong
1580306138
flesh out winsize struct for win
2019-02-16 15:11:57 -08:00
Wez Furlong
2c3d56c717
sigchld is a unix concept
2019-02-16 15:08:52 -08:00
Wez Furlong
6d8e839b2b
no clipboard on windows yet
2019-02-16 15:05:38 -08:00
Wez Furlong
f42463b601
make pty reading slightly more portable to win
2019-02-16 15:03:34 -08:00
Wez Furlong
66a6b4b912
can run with glutin/x11/opengl on linux again
...
Not everything is implemented, and this isn't intended to be the main
usage at the moment, but it does prove to me on WSL that this codepath
works. I want to get native windows code working through here too.
2019-02-16 14:28:02 -08:00
Wez Furlong
8995974124
rejigger gliumwindows to not need non-blocking io for pty
2019-02-16 13:34:09 -08:00
Wez Furlong
6c32efe76e
minor tidy up of gluimwindows dead code
2019-02-16 09:54:16 -08:00
Wez Furlong
d95da9c159
add feature to force building with glutin on linux
...
this helps me verify from WSL that I didn't break compilation in
the refactoring to follow
2019-02-16 09:27:22 -08:00
Wez Furlong
9bc99f5f1c
tweak windows imports
2019-02-16 08:54:24 -08:00
Wez Furlong
77884e2522
fixup KeyCode variant usage
2019-02-16 08:53:59 -08:00
Wez Furlong
ebf7210ae6
stub out some windows vs unix bits
2019-02-16 08:21:21 -08:00
Wez Furlong
1ec7feb7fa
add glium dep for windows
2019-02-16 00:12:41 -08:00
Wez Furlong
cd9c6ad5d1
fixup compilation on windows
2019-02-16 00:09:30 -08:00
Wez Furlong
2db17562a6
rustfmt
2019-02-16 00:08:38 -08:00
Wez Furlong
4098931e62
improve rendering of emoji
...
We were scaling some of them down way too much, so use a simpler
scaling computation.
In addition, try to "crop" the glyph to the non-transparent bits.
This seems to improve the visible size of some single-width glyphs
that don't fully occupy the bitmap size.
2018-10-21 16:04:42 -07:00
Wez Furlong
ff20499a09
improve cell metrics for emoji font
...
Take the bitmap size for the metrics, rather than computing something
that has a 0 width.
2018-10-21 14:45:26 -07:00
Wez Furlong
ada197f94e
don't panic if we get confused by text char boundaries
...
This triggered for me when grepping a file containing various
foreign language translations (non UTF-8).
2018-10-21 14:45:26 -07:00
Wez Furlong
61fec42216
cargo fmt with current stable rustfmt
2018-09-19 20:06:31 -07:00
Wez Furlong
3090d5c6f4
update freetype and improve loading of emoji fonts on ubuntu 18.04
2018-09-19 17:53:13 -07:00
Wez Furlong
3d3a718182
Fixup phantom release mouse code when using mouse wheel
...
This was breaking scrolling in vim
2018-09-04 00:34:53 -07:00
Wez Furlong
62d43ddd63
avoid panic when some clients change scroll margins
2018-08-09 00:04:28 -07:00
Wez Furlong
9219dbb327
We can now take iterm images into the wezterm terminalstate
...
We don't yet have any code to render them, and the vte parser seems
to truncate incoming image sequences ~1kb in size, so more work is
needed to make this useful.
2018-08-08 09:00:07 -07:00
Wez Furlong
a267ebb576
add theoretical support for storing Images in the Surface
...
There's basic rendering also, but it is not complete.
Needs more tests; will come back to those once more scaffolding
is in place.
2018-08-08 07:07:31 -07:00
Wez Furlong
5d27265b7c
add some structs for holding image data
2018-08-06 21:54:17 -07:00
Wez Furlong
2f8ffab213
parse and encode some iTerm specific escape sequences
2018-08-06 01:23:25 -07:00
Wez Furlong
dfa3ef5ae6
fix missing paren for the bell print
2018-08-05 17:22:46 -07:00
Wez Furlong
d3d11d629f
fix rendering of reverse video
...
This got broken when unifying the termwiz color type; we used to
have enum variants for background and foreground colors, but now
we just have Default and we need to resolve using helper methods
in the palette.
That means we need to resolve the colors before we swap them for
reverse video.
Bonus: we can lift this out of the loop for the cell cluster.
2018-08-05 17:19:58 -07:00
Wez Furlong
4601a4ecc9
simplify the readme
...
Now that we no longer require nightly rust, we can just run cargo.
2018-08-05 17:04:37 -07:00
Wez Furlong
a8ae14bb6b
fix panic when resizing smaller leaves the cursor off screen
2018-08-05 16:32:29 -07:00
Wez Furlong
60c24a9e41
consolidate on one set of input keycodes and modifiers
2018-08-05 14:28:29 -07:00
Wez Furlong
c0ea601645
add helper for managing primary and alt screen
2018-08-05 13:49:03 -07:00
Wez Furlong
cee63e74e1
consolidate term::Line -> termwiz::Line
2018-08-05 12:37:01 -07:00
Wez Furlong
2c7a27c42a
move CellCluster to termwiz
2018-08-05 12:10:50 -07:00
Wez Furlong
d7943681de
add check for lines with hyperlinks
2018-08-05 09:49:47 -07:00
Wez Furlong
12db6e4629
add implicit hyperlink creation to termwiz
2018-08-05 09:36:29 -07:00
Wez Furlong
18f34545b3
rustfmt
2018-08-05 09:14:40 -07:00
Wez Furlong
e2461b2380
add concept of implicit hyperlink to termwiz
...
Moves that functionality from wezterm+term into termwiz
2018-08-05 09:13:55 -07:00
Wez Furlong
92f59f243e
add state bits to surface::Line
...
Starting to migrate term::Line functionality over
2018-08-05 08:45:36 -07:00
Wez Furlong
cbe4a2e3bc
move surface::Change to its own module
2018-08-05 08:26:06 -07:00
Wez Furlong
e781fdd43b
move surface::Line into its own module
2018-08-05 08:25:42 -07:00
Wez Furlong
72d88091bc
move surface in preparation for splitting it up
2018-08-05 08:08:39 -07:00
Wez Furlong
8a188cfd74
tweak manifest to point to in-tree termwiz
2018-08-05 08:00:45 -07:00