├── .clang-tidy ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── c-cpp.yml │ └── formatter.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── compile_flags.txt ├── docs ├── manual.html ├── manual.md ├── manual.pdf ├── manual.txt └── ptext.1 ├── images └── logo.png └── src ├── buffer.c ├── commands.c ├── cursor.c ├── files.c ├── highlighter.c ├── include ├── buffer.h ├── commands.h ├── config.h ├── cursor.h ├── files.h ├── highlighter.h ├── input.h ├── lexer.h ├── options.h ├── output.h ├── ptext.h ├── rows.h ├── screen.h ├── search.h ├── stdafx.h ├── termio.h ├── userfuncs.h └── utils.h ├── input.c ├── lexer.c ├── options.c ├── output.c ├── ptext.c ├── rows.c ├── screen.c ├── search.c ├── termio.c ├── userfuncs.c └── utils.c /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/c-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/.github/workflows/c-cpp.yml -------------------------------------------------------------------------------- /.github/workflows/formatter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/.github/workflows/formatter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/README.md -------------------------------------------------------------------------------- /compile_flags.txt: -------------------------------------------------------------------------------- 1 | -Wall 2 | --debug 3 | -Wextra 4 | -pedantic 5 | -std=c99 6 | -I./src/include 7 | -MMD 8 | -MP 9 | 10 | -------------------------------------------------------------------------------- /docs/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/docs/manual.html -------------------------------------------------------------------------------- /docs/manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/docs/manual.md -------------------------------------------------------------------------------- /docs/manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/docs/manual.pdf -------------------------------------------------------------------------------- /docs/manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/docs/manual.txt -------------------------------------------------------------------------------- /docs/ptext.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/docs/ptext.1 -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/images/logo.png -------------------------------------------------------------------------------- /src/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/src/buffer.c -------------------------------------------------------------------------------- /src/commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/src/commands.c -------------------------------------------------------------------------------- /src/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/src/cursor.c -------------------------------------------------------------------------------- /src/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/src/files.c -------------------------------------------------------------------------------- /src/highlighter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/src/highlighter.c -------------------------------------------------------------------------------- /src/include/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/src/include/buffer.h -------------------------------------------------------------------------------- /src/include/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/src/include/commands.h -------------------------------------------------------------------------------- /src/include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/src/include/config.h -------------------------------------------------------------------------------- /src/include/cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/src/include/cursor.h -------------------------------------------------------------------------------- /src/include/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/src/include/files.h -------------------------------------------------------------------------------- /src/include/highlighter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/src/include/highlighter.h -------------------------------------------------------------------------------- /src/include/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/src/include/input.h -------------------------------------------------------------------------------- /src/include/lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/src/include/lexer.h -------------------------------------------------------------------------------- /src/include/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/src/include/options.h -------------------------------------------------------------------------------- /src/include/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/src/include/output.h -------------------------------------------------------------------------------- /src/include/ptext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/src/include/ptext.h -------------------------------------------------------------------------------- /src/include/rows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/src/include/rows.h -------------------------------------------------------------------------------- /src/include/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/src/include/screen.h -------------------------------------------------------------------------------- /src/include/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/src/include/search.h -------------------------------------------------------------------------------- /src/include/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/src/include/stdafx.h -------------------------------------------------------------------------------- /src/include/termio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/src/include/termio.h -------------------------------------------------------------------------------- /src/include/userfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/src/include/userfuncs.h -------------------------------------------------------------------------------- /src/include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/src/include/utils.h -------------------------------------------------------------------------------- /src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/src/input.c -------------------------------------------------------------------------------- /src/lexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/src/lexer.c -------------------------------------------------------------------------------- /src/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/src/options.c -------------------------------------------------------------------------------- /src/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/src/output.c -------------------------------------------------------------------------------- /src/ptext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/src/ptext.c -------------------------------------------------------------------------------- /src/rows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/src/rows.c -------------------------------------------------------------------------------- /src/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/src/screen.c -------------------------------------------------------------------------------- /src/search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/src/search.c -------------------------------------------------------------------------------- /src/termio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/src/termio.c -------------------------------------------------------------------------------- /src/userfuncs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/src/userfuncs.c -------------------------------------------------------------------------------- /src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/ptext/HEAD/src/utils.c --------------------------------------------------------------------------------