ee113c4269
CodeView widget allows viewing code in a more visually pleasing manner. It combines LineNumbers widget to provide line numbers on the side. The CodeView widget allows you to optionally highlight a specific line and show indentation guidelines. It is not intended to be a fully fledged editor, but rather for showing code snippets to a user. While it is not a fully fledged editor, this widget's code can give you a good starting point.
12 lines
567 B
Zig
12 lines
567 B
Zig
//! Specialized TUI Widgets
|
|
|
|
pub const border = @import("widgets/border.zig");
|
|
pub const alignment = @import("widgets/alignment.zig");
|
|
pub const Scrollbar = @import("widgets/Scrollbar.zig");
|
|
pub const Table = @import("widgets/Table.zig");
|
|
pub const TextInput = @import("widgets/TextInput.zig");
|
|
pub const nvim = @import("widgets/nvim.zig");
|
|
pub const ScrollView = @import("widgets/ScrollView.zig");
|
|
pub const LineNumbers = @import("widgets/LineNumbers.zig");
|
|
pub const TextView = @import("widgets/TextView.zig");
|
|
pub const CodeView = @import("widgets/CodeView.zig");
|