texterm icon indicating copy to clipboard operation
texterm copied to clipboard

A very minimal & simple text editor written in C with only Standard C Library.

Results 4 texterm issues
Sort by recently updated
recently updated
newest added

this looks like the perfect editor to put on my android phone which has none. Nano needs some system libs. Could you add support for Android compilation? This is how...

editor_open() can returns an integer for the status of the call. Zero equals failure and one equals success. Small change : Fixed a typo.

This PR addresses two compile-time errors: - [`src/editor.c:199`](https://github.com/biraj21/texterm/blob/main/src/editor.c#L199), truncation error, buffer is only 16 but result can be 17. - [`src/languages.h:7`](https://github.com/biraj21/texterm/blob/main/src/languages.h#L7), directory name and references are mismatched

In order of encountering them: ``` texterm$ make mkdir -p src obj rm -f texterm obj/*.o sample cc -Wall -Werror -Wpedantic -Wextra -c -o obj/editor.o src/editor.c src/editor.c: In function ‘editor_refresh_screen’:...