mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-21 23:03:59 -09:00
This commit adds "kibi" a configurable text editor with UTF-8 support, incremental search, syntax highlighting, line numbers and more, written in less than 1024 lines of Rust with minimal dependencies. https://github.com/ilai-deutel/kibi Signed-off-by: Alexander Shirokov <shirokovalexs@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
22 lines
573 B
Plaintext
22 lines
573 B
Plaintext
config BR2_PACKAGE_KIBI
|
|
bool "kibi"
|
|
depends on BR2_PACKAGE_HOST_RUSTC_TARGET_ARCH_SUPPORTS
|
|
select BR2_PACKAGE_HOST_RUSTC
|
|
help
|
|
A configurable text editor with UTF-8 support, incremental
|
|
search, syntax highlighting, line numbers and more, written
|
|
in less than 1024 lines of Rust with minimal dependencies.
|
|
|
|
https://github.com/ilai-deutel/kibi
|
|
|
|
if BR2_PACKAGE_KIBI
|
|
|
|
config BR2_PACKAGE_KIBI_SYNTAX_HIGHLIGHTING
|
|
bool "syntax highlighting"
|
|
default y
|
|
help
|
|
Install files to enable syntax highlighting. This option adds
|
|
200 KB of data to /usr/share/
|
|
|
|
endif
|