A rawmode CLI editor, in PHP, based on the C Kilo tutorial: https://viewsourcecode.org/snaptoken/kilo/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
9 months ago | |
---|---|---|
src | 9 months ago | |
tests | 9 months ago | |
.editorconfig | 3 years ago | |
.gitignore | 2 years ago | |
Dockerfile | 1 year ago | |
Jenkinsfile | 1 year ago | |
README.md | 1 year ago | |
composer.json | 9 months ago | |
composer.lock | 9 months ago | |
kilo | 1 year ago | |
phpstan.neon | 1 year ago | |
phpunit.xml | 1 year ago | |
test.php | 1 year ago |
README.md
PHP Kilo
A reimplementation of the Kilo tutorial in PHP. Also has some inspiration from the Hecto text editor tutorial. Requires PHP 8 and FFI.
Requirements
- PHP 8
- FFI enabled
Implementation notes:
- The
editor
prefix has been removed from all the relevant functions, instead they are methods on one of the implementation classes. - Enums are faked with class constants
- Composer is used for autoloading
- Properties that must be manually updated in the C version (like counts/string length) are implemented with magic methods, so they are essentially calculated on read.
- Generally, if a function exists in PHP, with the same name as the C function, the PHP version will be used.
- Classes are used to modularize functionality, and reduce the amount of functions with global side effects