1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-19 11:21:39 +03:00
Commit Graph

4241 Commits

Author SHA1 Message Date
Wez Furlong
1361c2ce61 invalidate Change stream on resize 2018-07-12 20:42:27 -07:00
Wez Furlong
c2acc333b1 add ability to flush the change stream 2018-07-12 20:07:47 -07:00
Wez Furlong
d889168001 construct Change streams 2018-07-12 09:05:46 -07:00
Wez Furlong
e547f8c504 start building out the terminal model
This is influenced by my code in wezterm
2018-07-12 07:26:37 -07:00
Wez Furlong
039eadc05f update rustfmt 2018-07-11 08:30:49 -07:00
Wez Furlong
6efce9943c std::env::home_dir is deprecated, use an alternative 2018-07-11 08:29:11 -07:00
Wez Furlong
8fae5f56a8 remove dead_code marker from some exported constants 2018-07-11 08:14:09 -07:00
Wez Furlong
8b24d34a74 fix panic for large pastes 2018-04-28 21:54:39 -07:00
Wez Furlong
b9088bd62d update for rustfmt changes 2018-04-28 21:53:14 -07:00
Wez Furlong
d73892a4fd update for recent rustfmt changes
No functional changes
2018-04-11 13:15:12 -07:00
Wez Furlong
57b438f867 Ensure that the TERM variable is set
This is important when being launched directly from the window manager.
2018-04-11 12:04:53 -07:00
Wez Furlong
197819db6d Add basic support for ICH which is used by bash CTRL-R 2018-03-09 22:15:06 -08:00
Wez Furlong
1c4500082f don't accumulate lingering zombies after closing a tab 2018-03-04 19:29:18 -08:00
Wez Furlong
2b822687be resize all tabs when resizing the window 2018-03-04 17:24:19 -08:00
Wez Furlong
ff5a3179e1 new windows with Cmd-N 2018-03-04 17:17:37 -08:00
Wez Furlong
ddb0055124 Add docs about window and tab hotkeys 2018-03-04 17:10:38 -08:00
Wez Furlong
68bb0e859e Show tab number in title bar when there are tabs 2018-03-04 17:06:06 -08:00
Wez Furlong
c5ce3e2621 Add CMD-[0-9] as shortcut for tab switching 2018-03-04 16:52:40 -08:00
Wez Furlong
edf44c9c48 We can now spawn and switch tabs! 2018-03-04 16:46:14 -08:00
Wez Furlong
cabc6681b6 add tab spawning 2018-03-04 16:27:02 -08:00
Wez Furlong
816925424a add basic tab related key bindings 2018-03-04 13:31:16 -08:00
Wez Furlong
eb7153eb50 theoretically deal with a single tab closing on its own 2018-03-04 13:26:40 -08:00
Wez Furlong
dfafebebef A window can theoretically now have multiple tabs 2018-03-04 12:47:58 -08:00
Wez Furlong
6c6f4ea39b Each window now has a single Tab 2018-03-04 12:32:20 -08:00
Wez Furlong
d571d555f1 impl Evented for XCB Connection 2018-03-04 12:30:43 -08:00
Wez Furlong
88473e5a09 move window/tab/fullscreen related to TerminalHost 2018-03-04 09:13:36 -08:00
Wez Furlong
9affe0ea30 We can now open and safely close multiple windows! 2018-03-04 08:41:40 -08:00
Wez Furlong
6ccf3c98d7 support F-Keys with native xcb code 2018-03-04 07:32:37 -08:00
Wez Furlong
41cfcfdb15 Bring back my original xcb+egl window bits 2018-03-04 07:27:18 -08:00
Wez Furlong
079ac49c6b add guiloop as indirection over glutinloop
... and remove dep on glutin.  We don't properly compile yet,
but this is a step to bringing back the egl bits we had originally.
2018-03-03 22:03:12 -08:00
Wez Furlong
089e98050d reduce deps on glutin in futurecore 2018-03-03 21:47:14 -08:00
Wez Furlong
dac2962c29 factor wakeup into glutinloop 2018-03-03 21:38:06 -08:00
Wez Furlong
7161191e52 factor glutin bits into their own file 2018-03-03 21:23:18 -08:00
Wez Furlong
6623e1ff86 We can now spawn additional windows
However, https://github.com/tomaka/winit/issues/414 makes this unsafe.
2018-03-03 18:48:08 -08:00
Wez Furlong
4089649d8c simplify the TerminalWindow constructor a little more 2018-03-03 17:29:16 -08:00
Wez Furlong
b1a5ebd06f slightly simplify TerminalWindow constructor 2018-03-03 17:21:33 -08:00
Wez Furlong
d7e5df0428 fix typo 2018-03-03 17:15:31 -08:00
Wez Furlong
a387dc0e49 factor out window spawning 2018-03-03 17:10:47 -08:00
Wez Furlong
f7a567b847 share a reference to the config 2018-03-03 16:42:46 -08:00
Wez Furlong
feaad96069 add some comments 2018-03-03 16:13:20 -08:00
Wez Furlong
7a5ba82fa9 cleanup some Drops 2018-03-03 15:50:02 -08:00
Wez Furlong
ce8de2ca03 use futures to manage closing a window 2018-03-03 15:48:36 -08:00
Wez Furlong
5db84856e9 clippy 2018-03-03 13:27:28 -08:00
Wez Furlong
f1db5dac40 clippy 2018-03-03 13:00:56 -08:00
Wez Furlong
b945db3bdd migrate sigchld handling to GuiSender 2018-03-03 11:18:51 -08:00
Wez Furlong
ebc4eaab36 move paste over to GuiSender 2018-03-03 11:07:27 -08:00
Wez Furlong
00b45ce350 begin stitching the new mio bits into the gui loop 2018-03-03 10:51:55 -08:00
Wez Furlong
7f5991028b refactor pty thread bits into a more generic remote mio 2018-03-03 09:29:41 -08:00
Wez Furlong
048a6403bc Start building out future executor 2018-03-03 08:14:34 -08:00
Wez Furlong
a9c2578719 more event loop restructuring 2018-03-03 07:30:36 -08:00