A tab view wrapper for
gyscos/cursive
views
This project is work-in-progress
This project provides a wrapper view to be able to easily handle multiple tabs that can be switched to at any time without having to change the order of the views for gyscos/cursive views.
demo
Expand to view
Simply add to your Cargo.toml
toml
[dependencies]
cursive-tabs = "^0"
TabView
and add tabsThis crate provides a struct TabView
you can use to add tabs and switch between them.
```rust use cursive::{views::TextView, Cursive}; use cursive_tabs::TabView;
let mut siv = Cursive::default(); let tabs = TabView::new().with_view(0, TextView::new("Our first tab!")); // We can continue to add as many tabs as we want!
siv.add_layer(tabs); siv.run(); ```
If you find any bugs/unexpected behaviour or you have a proposition for future changes open an issue describing the current behaviour and what you expected.
:bangbang: CAUTION :bangbang: This crate uses Tmux for end2end testing and will kill your Tmux server during testing!
In order to run the integration tests, you first need to install a recent version of >=npm-10
and >=tmux-2.6
!
After npm
and tmux
are installed, install required dependencies:
$ ./scripts/prepare-end2end-tests.sh
This will use npm
to install jest
and shellshot
in the tests
folder.
Just run
$ cargo test
to execute all available tests.
shields.io endpoints are generated inside the ./target/shields
folder. They are used in this README.
The current public API of this crate is not consistent with RFC 344. This is due to cursive
itself not being
consistent with RFC 344
. This crate tries to implement a smooth user experience for cursive
users. Therefore, the cursive
naming convention was adapted. When cursive
upstream converts
their API to a RFC 344
consistent naming scheme, this crate will adapt to the changes.
Fin Christensen
:octocat:
@fin-ger
:elephant:@fin_ger@mastodon.social
:bird:@fin_ger_github
Johannes Wünsche
:octocat:
@jwuensche
:elephant:@fredowald@mastodon.social
:bird:@Fredowald
Give a :star: if this project helped you!