zellij/zellij-utils/src
kxt 0c0355dbc6
refactors for #525 (#534)
* refactor(fakes): clean up add_terminal_input

* refactor(fakes): append whole buf to output_buffer in FakeStdoutWriter::write

* refactor(fakes): append whole buf to output_buffer in FakeInputOutput::write_to_tty_stdin

* fix(fakes): allow partial reads in read_from_tty_stdout

This patch fixes two bugs in read_from_tty_stdout:
* if there was a partial read (ie. `bytes.read_position` is not 0 but
less than `bytes.content.len()`), subsequent calls to would fill `buf`
starting at index `bytes.read_position` instead of 0, leaving range
0..`bytes.read_position` untouched.
* if `buf` was smaller than `bytes.content.len()`, a panic would occur.

* refactor(channels): use crossbeam instead of mpsc

This patch replaces mpsc with crossbeam channels because crossbeam
supports selecting on multiple channels which will be necessary in a
subsequent patch.

* refactor(threadbus): allow multiple receivers in Bus

This patch changes Bus to use multiple receivers. Method `recv` returns
data from all of them. This will be used in a subsequent patch for
receiving from bounded and unbounded queues at the same time.

* refactor(channels): remove SenderType enum

This enum has only one variant, so the entire enum can be replaced with
the innards of said variant.

* refactor(channels): remove Send+Sync trait implementations

The implementation of these traits is not necessary, as
SenderWithContext is automatically Send and Sync for every T and
ErrorContext that's Send and Sync.
2021-05-27 16:28:28 +02:00
..
input add keybinds for session mode and detach 2021-05-22 22:19:50 +05:30
channels.rs refactors for #525 (#534) 2021-05-27 16:28:28 +02:00
cli.rs Allow user to specify session name 2021-05-22 22:21:26 +05:30
consts.rs Add ability to attach to sessions 2021-05-22 22:19:50 +05:30
errors.rs Add ability to attach to sessions 2021-05-22 22:19:50 +05:30
ipc.rs join router threads on exit 2021-05-22 22:19:50 +05:30
lib.rs Re-export common dependencies from zellij-utils 2021-05-19 01:35:53 +05:30
logging.rs refactor(IO): random fixes (#521) 2021-05-18 17:39:36 +02:00
pane_size.rs Big refactor: separate crates for client, server and utilities 2021-05-16 21:41:56 +05:30
setup.rs Move config assets to zellij-utils crate 2021-05-27 13:41:17 +02:00
shared.rs fmt and clippy 2021-05-16 22:25:32 +05:30