How to Install and Uninstall stb_textedit-devel.x86_64 Package on Rocky Linux 9

Last updated: May 19,2024

1. Install "stb_textedit-devel.x86_64" package

This guide covers the steps necessary to install stb_textedit-devel.x86_64 on Rocky Linux 9

$ sudo dnf update $ sudo dnf install stb_textedit-devel.x86_64

2. Uninstall "stb_textedit-devel.x86_64" package

This guide let you learn how to uninstall stb_textedit-devel.x86_64 on Rocky Linux 9:

$ sudo dnf remove stb_textedit-devel.x86_64 $ sudo dnf autoremove

3. Information about the stb_textedit-devel.x86_64 package on Rocky Linux 9

Last metadata expiration check: 0:51:10 ago on Fri Feb 16 06:49:52 2024.
Available Packages
Name : stb_textedit-devel
Version : 1.14^20231011gitbeebb24
Release : 12.el9
Architecture : x86_64
Size : 23 k
Source : stb-0^20231011gitbeebb24-12.el9.src.rpm
Repository : epel
Summary : Guts of a text editor for games etc., implementing them from scratch
URL : https://github.com/nothings/stb
License : MIT OR Unlicense
Description : This C header file implements the guts of a multi-line text-editing widget; you
: implement display, word-wrapping, and low-level string insertion/deletion, and
: stb_textedit will map user inputs into insertions & deletions, plus updates to
: the cursor position, selection state, and undo state.
:
: It is intended for use in games and other systems that need to build their own
: custom widgets and which do not have heavy text-editing requirements (this
: library is not recommended for use for editing large texts, as its performance
: does not scale and it has limited undo).
:
: Non-trivial behaviors are modelled after Windows text controls.