Go to file
Francesco Abbate 63331ac50c Add command to create a directory in a new category "files"
Use the alt + (left click) is tree view to create a directory and
shift + (middle click) to remove a project directory.
2020-12-28 16:18:03 +01:00
.github Create FUNDING.yml 2020-06-18 16:48:05 +01:00
data Add command to create a directory in a new category "files" 2020-12-28 16:18:03 +01:00
dev-utils Minor change in run-local script 2020-12-26 15:25:09 +01:00
doc Update readme and changelog for release 1.14 2020-12-13 13:04:29 +01:00
lib/font_renderer Fix font hinting when using subpixel rendering 2020-12-11 14:36:32 +01:00
src Use ~ for HOME directory in folder search 2020-12-19 16:31:42 +01:00
subprojects Update recipe for Lua subproject 2020-12-14 18:40:08 +01:00
.gitattributes Added `icon.inl linguist-vendored` to .gitattributes 2020-05-10 15:54:09 +01:00
.gitignore Implement script to run locally a build without installing 2020-12-03 23:01:01 +01:00
LICENSE Updated copyright year; 2019 => 2020 2020-01-01 16:00:39 +00:00
README.md Update README for 1.14 release 2020-12-16 18:05:41 +01:00
build-packages.sh Include rxi/lite-colors when building a package 2020-12-11 15:14:57 +01:00
build.sh Improve the implementation of unix-like directories usage 2020-12-03 16:46:18 +01:00
changelog.md Update readme and changelog for release 1.14 2020-12-13 13:04:29 +01: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
meson.build Fix install directory for data folder 2020-12-16 18:03:36 +01:00
meson_options.txt Add missing meson_options file from previous commit 2020-12-03 16:47:33 +01:00
res.rc Initial commit 2019-12-28 11:17:56 +00:00

README.md

Lite XL

screenshot-dark

A lightweight text editor written in Lua, adapted from Lite

Please note that Lite XL is compatible with Lite for all the plugins and color themes. Yet we provide a specific lite-plugins directory for Lite XL because in some cases some adaptations may be needed to make them work better with Lite XL. The address for modified plugins is http://github.com/franko/lite-plugins. Currently only the "workspace" plugin needs a minor adjustment to restore the workspace when the command core:restart is used.

The changes and differences between Lite XL and rxi/lite are listed in the changelog.

Overview

Lite XL is derived from Lite. It is a lightweight text editor written mostly in Lua — it aims to provide something practical, pretty, small and fast easy to modify and extend, or to use without doing either.

The aim of Lite XL compared to Lite is to be more user friendly, improve the quality of the font rendering and reduce CPU usage.

Customization

Additional functionality can be added through plugins which are available from the plugins repository or from the plugin repository adapted to Lite XL; 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 using the Meson build.

In addition the script build-packages.sh can be used to compile Lite XL and create a package adapted to the OS, Linux, Windows or Mac OS X.

The following libraries are required:

  • freetype2
  • SDL2

The libraries libagg and Lua 5.2 are optional. If they are not found they will be automatically downloaded and compiled by the Meson build system. Otherwise, if they are present they will be used to compile Lite XL.

On a debian based systems the required library and Meson can be installed using the commands:

# To install the required libraries:
sudo apt install libfreetype6-dev libsdl2-dev

# To install Meson:
sudo apt install meson
# or pip3 install --user meson

To build Lite XL with Meson use the commands:

meson setup build
meson compile -C build
meson install -C build

When performing the "meson setup" command you may enable the "portable" option.

If this latter is enabled Lite XL is built to use a "data" and a "user" directory from the same directory of the executable. If "portable" is not enabled (this is the default) Lite XL will use unix-like directory locations. In this case the "data" directory will be $prefix/share/lite-xl and the "user" directory will be $HOME/.config/lite-xl. The $prefix is determined as the directory such as $prefix/bin corresponds to the location of the executable. The $HOME is determined from the corresponding environment variable. As a special case on Windows the variable $USERPROFILE will be used instead.

If you want to install Lite XL on Windows or Mac OS X we suggest to use the script build-packages.sh:

bash build-packages.sh <version> <arch>

# In alternative the -portable option can be used like below:
# bash build-packages.sh -portable <version> <arch>

It will run meson and create a Zip file that can be easily installed or uninstalled.

Please note the, while compiling Lite XL on Mac OS X should work Mac OS X is not currently supported.

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.

Pull requests to improve or modify the editor itself 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.