lite-hearted is a small compatibility shim for the lite text editor that allows it to run in love2d.
 
 
 
 
 
 
Go to file
Jeremy Penner 384d54f9e3 Add custom status bar, timer, section headings 2022-01-06 22:25:27 -05:00
.github Create FUNDING.yml 2020-06-18 16:48:05 +01:00
data Add custom status bar, timer, section headings 2022-01-06 22:25:27 -05:00
doc Added `doc/usage.md` 2020-07-19 14:20:03 +01:00
src Changed rencache to store font tab_width with font command 2020-09-05 15:09:54 +01:00
winlib/SDL2-2.0.10 Initial commit 2019-12-28 11:17:56 +00:00
.gitattributes Added `icon.inl linguist-vendored` to .gitattributes 2020-05-10 15:54:09 +01:00
LICENSE Updated copyright year; 2019 => 2020 2020-01-01 16:00:39 +00:00
README.md First working pass at "lite-hearted" love2d driver 2020-09-12 13:46:11 -04:00
build.sh Added `-fno-strict-aliasing` to build script 2020-06-13 13:35:36 +01:00
build_release.sh Replaced `build.py/build.config.py` with `build.sh` 2020-05-09 11:01:28 +01:00
conf.lua First working pass at "lite-hearted" love2d driver 2020-09-12 13:46:11 -04:00
icon.ico Updated icon 2020-05-09 11:33:16 +01:00
icon.inl Updated icon 2020-05-09 11:33:16 +01:00
main.lua Don't assume lite lives at the root of the repo 2022-01-06 22:25:25 -05:00
res.rc Initial commit 2019-12-28 11:17:56 +00:00

README.md

lite-hearted

lite-hearted is a small compatibility shim for the lite text editor that allows it to run in love2d. It is a quick-and-dirty experiment in embedding editing tools into a game engine, to allow for building smooth game development workflows. It's also literally a two-evening hack, so you will probably run into some rough edges!

You can run it simply by cloning this repo and running love .. Due to the limitations of love2d's sandboxed filesystem, you can only edit files that are in the project itself. Given the goals of this project, this should be fine.

Original README follows:

lite

screenshot

A lightweight text editor written in Lua

Overview

lite is a lightweight text editor written mostly in Lua — it aims to provide something practical, pretty, small and fast, implemented as simply as possible; easy to modify and extend, or to use without doing either.

Customization

Additional functionality can be added through plugins which are available from the plugins repository; additional color themes can be found in the colors repository. The editor can be customized by making changes to the user module.

Building

You can build the project yourself on Linux using the provided build.sh script. Note that the project does not need to be rebuilt if you are only making changes to the Lua portion of the code.

Contributing

Any additional functionality that can be added through a plugin should be done so as a plugin, after which a pull request to the plugins repository can be made. In hopes of remaining lightweight, pull requests adding additional functionality to the core will likely not be merged. Bug reports and bug fixes are welcome.

License

This project is free software; you can redistribute it and/or modify it under the terms of the MIT license. See LICENSE for details.