├── .github ├── ISSUE_TEMPLATE │ ├── feature_request.md │ └── issue.md └── workflows │ └── CI.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── Makefile.toml ├── README.md ├── assets └── images │ ├── showcase_e2e.gif │ └── x.md ├── examples ├── README.md ├── e2e │ └── session_manager │ │ ├── .cargo │ │ └── config.toml │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ └── src │ │ ├── loading.rs │ │ ├── main.rs │ │ └── session │ │ ├── list.rs │ │ ├── mod.rs │ │ ├── pane.rs │ │ └── tab.rs ├── showcase_block │ ├── .cargo │ │ └── config.toml │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── showcase_custom_button │ ├── .cargo │ │ └── config.toml │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ ├── component.rs │ │ └── main.rs ├── showcase_gauge │ ├── .cargo │ │ └── config.toml │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── showcase_list │ ├── .cargo │ │ └── config.toml │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── showcase_popup │ ├── .cargo │ │ └── config.toml │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── showcase_scrollbar │ ├── .cargo │ │ └── config.toml │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── main.rs └── showcase_tabs │ ├── .cargo │ └── config.toml │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ └── main.rs ├── src ├── buffer.rs ├── core │ ├── command.rs │ ├── cursor.rs │ ├── macros.rs │ └── mod.rs ├── frame.rs ├── layout │ ├── gemo.rs │ └── mod.rs ├── lib.rs ├── plugin_pane.rs ├── prelude.rs ├── style │ ├── ansi.rs │ ├── attributes.rs │ ├── mod.rs │ ├── modifier.rs │ ├── styled.rs │ ├── stylize.rs │ ├── symbols.rs │ └── types │ │ ├── attribute.rs │ │ ├── color.rs │ │ ├── colored.rs │ │ └── mod.rs ├── test │ ├── mod.rs │ └── utils.rs ├── text │ ├── grapheme.rs │ ├── line.rs │ ├── masked.rs │ ├── mod.rs │ └── span.rs ├── title.rs ├── uis │ ├── block │ │ ├── border_option.rs │ │ ├── border_type.rs │ │ ├── borders.rs │ │ ├── mod.rs │ │ └── padding.rs │ ├── erase.rs │ ├── gauge.rs │ ├── list │ │ ├── highlight_style.rs │ │ ├── list_item.rs │ │ ├── mod.rs │ │ └── state.rs │ ├── mod.rs │ ├── paragraph.rs │ ├── reflow.rs │ ├── scrollbar │ │ ├── mod.rs │ │ └── state.rs │ └── tab.rs └── widget.rs └── typos.toml /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/.github/ISSUE_TEMPLATE/issue.md -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/Makefile.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/README.md -------------------------------------------------------------------------------- /assets/images/showcase_e2e.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/assets/images/showcase_e2e.gif -------------------------------------------------------------------------------- /assets/images/x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/assets/images/x.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/e2e/session_manager/.cargo/config.toml: -------------------------------------------------------------------------------- 1 | [build] 2 | target = "wasm32-wasi" 3 | 4 | -------------------------------------------------------------------------------- /examples/e2e/session_manager/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/examples/e2e/session_manager/Cargo.lock -------------------------------------------------------------------------------- /examples/e2e/session_manager/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/examples/e2e/session_manager/Cargo.toml -------------------------------------------------------------------------------- /examples/e2e/session_manager/src/loading.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/examples/e2e/session_manager/src/loading.rs -------------------------------------------------------------------------------- /examples/e2e/session_manager/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/examples/e2e/session_manager/src/main.rs -------------------------------------------------------------------------------- /examples/e2e/session_manager/src/session/list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/examples/e2e/session_manager/src/session/list.rs -------------------------------------------------------------------------------- /examples/e2e/session_manager/src/session/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/examples/e2e/session_manager/src/session/mod.rs -------------------------------------------------------------------------------- /examples/e2e/session_manager/src/session/pane.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/examples/e2e/session_manager/src/session/pane.rs -------------------------------------------------------------------------------- /examples/e2e/session_manager/src/session/tab.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/examples/e2e/session_manager/src/session/tab.rs -------------------------------------------------------------------------------- /examples/showcase_block/.cargo/config.toml: -------------------------------------------------------------------------------- 1 | [build] 2 | target = "wasm32-wasi" 3 | 4 | -------------------------------------------------------------------------------- /examples/showcase_block/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/examples/showcase_block/Cargo.lock -------------------------------------------------------------------------------- /examples/showcase_block/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/examples/showcase_block/Cargo.toml -------------------------------------------------------------------------------- /examples/showcase_block/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/examples/showcase_block/src/main.rs -------------------------------------------------------------------------------- /examples/showcase_custom_button/.cargo/config.toml: -------------------------------------------------------------------------------- 1 | [build] 2 | target = "wasm32-wasi" 3 | 4 | -------------------------------------------------------------------------------- /examples/showcase_custom_button/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/examples/showcase_custom_button/Cargo.lock -------------------------------------------------------------------------------- /examples/showcase_custom_button/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/examples/showcase_custom_button/Cargo.toml -------------------------------------------------------------------------------- /examples/showcase_custom_button/src/component.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/examples/showcase_custom_button/src/component.rs -------------------------------------------------------------------------------- /examples/showcase_custom_button/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/examples/showcase_custom_button/src/main.rs -------------------------------------------------------------------------------- /examples/showcase_gauge/.cargo/config.toml: -------------------------------------------------------------------------------- 1 | [build] 2 | target = "wasm32-wasi" 3 | 4 | -------------------------------------------------------------------------------- /examples/showcase_gauge/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/examples/showcase_gauge/Cargo.lock -------------------------------------------------------------------------------- /examples/showcase_gauge/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/examples/showcase_gauge/Cargo.toml -------------------------------------------------------------------------------- /examples/showcase_gauge/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/examples/showcase_gauge/src/main.rs -------------------------------------------------------------------------------- /examples/showcase_list/.cargo/config.toml: -------------------------------------------------------------------------------- 1 | [build] 2 | target = "wasm32-wasi" 3 | 4 | -------------------------------------------------------------------------------- /examples/showcase_list/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/examples/showcase_list/Cargo.lock -------------------------------------------------------------------------------- /examples/showcase_list/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/examples/showcase_list/Cargo.toml -------------------------------------------------------------------------------- /examples/showcase_list/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/examples/showcase_list/src/main.rs -------------------------------------------------------------------------------- /examples/showcase_popup/.cargo/config.toml: -------------------------------------------------------------------------------- 1 | [build] 2 | target = "wasm32-wasi" 3 | 4 | -------------------------------------------------------------------------------- /examples/showcase_popup/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/examples/showcase_popup/Cargo.lock -------------------------------------------------------------------------------- /examples/showcase_popup/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/examples/showcase_popup/Cargo.toml -------------------------------------------------------------------------------- /examples/showcase_popup/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/examples/showcase_popup/src/main.rs -------------------------------------------------------------------------------- /examples/showcase_scrollbar/.cargo/config.toml: -------------------------------------------------------------------------------- 1 | [build] 2 | target = "wasm32-wasi" 3 | 4 | 5 | -------------------------------------------------------------------------------- /examples/showcase_scrollbar/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/examples/showcase_scrollbar/Cargo.lock -------------------------------------------------------------------------------- /examples/showcase_scrollbar/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/examples/showcase_scrollbar/Cargo.toml -------------------------------------------------------------------------------- /examples/showcase_scrollbar/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/examples/showcase_scrollbar/src/main.rs -------------------------------------------------------------------------------- /examples/showcase_tabs/.cargo/config.toml: -------------------------------------------------------------------------------- 1 | [build] 2 | target = "wasm32-wasi" 3 | 4 | -------------------------------------------------------------------------------- /examples/showcase_tabs/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/examples/showcase_tabs/Cargo.lock -------------------------------------------------------------------------------- /examples/showcase_tabs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/examples/showcase_tabs/Cargo.toml -------------------------------------------------------------------------------- /examples/showcase_tabs/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/examples/showcase_tabs/src/main.rs -------------------------------------------------------------------------------- /src/buffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/buffer.rs -------------------------------------------------------------------------------- /src/core/command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/core/command.rs -------------------------------------------------------------------------------- /src/core/cursor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/core/cursor.rs -------------------------------------------------------------------------------- /src/core/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/core/macros.rs -------------------------------------------------------------------------------- /src/core/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/core/mod.rs -------------------------------------------------------------------------------- /src/frame.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/frame.rs -------------------------------------------------------------------------------- /src/layout/gemo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/layout/gemo.rs -------------------------------------------------------------------------------- /src/layout/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/layout/mod.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/plugin_pane.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/plugin_pane.rs -------------------------------------------------------------------------------- /src/prelude.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/prelude.rs -------------------------------------------------------------------------------- /src/style/ansi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/style/ansi.rs -------------------------------------------------------------------------------- /src/style/attributes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/style/attributes.rs -------------------------------------------------------------------------------- /src/style/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/style/mod.rs -------------------------------------------------------------------------------- /src/style/modifier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/style/modifier.rs -------------------------------------------------------------------------------- /src/style/styled.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/style/styled.rs -------------------------------------------------------------------------------- /src/style/stylize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/style/stylize.rs -------------------------------------------------------------------------------- /src/style/symbols.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/style/symbols.rs -------------------------------------------------------------------------------- /src/style/types/attribute.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/style/types/attribute.rs -------------------------------------------------------------------------------- /src/style/types/color.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/style/types/color.rs -------------------------------------------------------------------------------- /src/style/types/colored.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/style/types/colored.rs -------------------------------------------------------------------------------- /src/style/types/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/style/types/mod.rs -------------------------------------------------------------------------------- /src/test/mod.rs: -------------------------------------------------------------------------------- 1 | mod utils; 2 | -------------------------------------------------------------------------------- /src/test/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/test/utils.rs -------------------------------------------------------------------------------- /src/text/grapheme.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/text/grapheme.rs -------------------------------------------------------------------------------- /src/text/line.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/text/line.rs -------------------------------------------------------------------------------- /src/text/masked.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/text/masked.rs -------------------------------------------------------------------------------- /src/text/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/text/mod.rs -------------------------------------------------------------------------------- /src/text/span.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/text/span.rs -------------------------------------------------------------------------------- /src/title.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/title.rs -------------------------------------------------------------------------------- /src/uis/block/border_option.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/uis/block/border_option.rs -------------------------------------------------------------------------------- /src/uis/block/border_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/uis/block/border_type.rs -------------------------------------------------------------------------------- /src/uis/block/borders.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/uis/block/borders.rs -------------------------------------------------------------------------------- /src/uis/block/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/uis/block/mod.rs -------------------------------------------------------------------------------- /src/uis/block/padding.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/uis/block/padding.rs -------------------------------------------------------------------------------- /src/uis/erase.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/uis/erase.rs -------------------------------------------------------------------------------- /src/uis/gauge.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/uis/gauge.rs -------------------------------------------------------------------------------- /src/uis/list/highlight_style.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/uis/list/highlight_style.rs -------------------------------------------------------------------------------- /src/uis/list/list_item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/uis/list/list_item.rs -------------------------------------------------------------------------------- /src/uis/list/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/uis/list/mod.rs -------------------------------------------------------------------------------- /src/uis/list/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/uis/list/state.rs -------------------------------------------------------------------------------- /src/uis/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/uis/mod.rs -------------------------------------------------------------------------------- /src/uis/paragraph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/uis/paragraph.rs -------------------------------------------------------------------------------- /src/uis/reflow.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/uis/reflow.rs -------------------------------------------------------------------------------- /src/uis/scrollbar/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/uis/scrollbar/mod.rs -------------------------------------------------------------------------------- /src/uis/scrollbar/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/uis/scrollbar/state.rs -------------------------------------------------------------------------------- /src/uis/tab.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/uis/tab.rs -------------------------------------------------------------------------------- /src/widget.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/src/widget.rs -------------------------------------------------------------------------------- /typos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kangaxx-0/zellij_widgets/HEAD/typos.toml --------------------------------------------------------------------------------