Go to file
George Sokianos 1279fde93b Cleaned up and fixed os4build.sh 2022-01-11 22:49:14 +00:00
.github Use explicit dispatch to trigger CI builds 2021-05-01 22:56:04 +02:00
data Added config.scroll_past_end 2022-01-05 20:03:20 +00:00
dev-utils Add macos access request for Downloads folder 2021-05-23 15:23:04 +02:00
doc Improve user feedback for big directories (#223) 2021-05-27 08:28:58 +02:00
lib/font_renderer Added the build script for font renderer 2021-12-21 17:55:37 +00:00
release_files Some extra changes before the release 2022-01-11 20:04:48 +00:00
src Prepare 1.16.12.7 release 2022-01-11 20:00:14 +00:00
subprojects Update subproject reference to libagg 2021-03-23 08:54:45 +01:00
.gitattributes Added `icon.inl linguist-vendored` to .gitattributes 2020-05-10 15:54:09 +01:00
.gitignore Some code cleanup and added .config folder to gitignore 2021-12-26 17:08:09 +00:00
LICENSE Switch to FiraSans and JetBrainsMono fonts 2021-05-22 15:09:54 +02:00
Makefile.os4 Added Makefile and releases files 2021-12-27 15:11:10 +00:00
README.md Link to release page for MacOS section of building (#207) 2021-05-22 14:57:18 +02:00
README_OS4.md Some extra changes before the release 2022-01-11 20:04:48 +00:00
README_OS4.md.info Added icon and OS4 readme file 2021-12-21 17:56:49 +00:00
build-packages.sh Update build package script for window 2021-05-06 09:36:39 +02:00
build.sh Use Xlib to read resources (#142) 2021-04-02 16:43:21 +02:00
changelog.md Bump version 1.16.2 and update changelog 2021-06-20 23:09:58 +02: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
lite.info Added icon and OS4 readme file 2021-12-21 17:56:49 +00:00
meson.build Switch to FiraSans and JetBrainsMono fonts 2021-05-22 15:09:54 +02:00
meson_options.txt Make usage of SDL renderer optional 2021-04-29 14:15:24 +02:00
os4build.sh Cleaned up and fixed os4build.sh 2022-01-11 22:49:14 +00: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

Lite XL has support for high DPI display on Windows and Linux and, since 1.16.7 release, it supports retina displays on Mac OS.

Please note that Lite XL is compatible with lite for most plugins and all color themes. We provide a separate lite-plugins repository for Lite XL, because in some cases some adaptations may be needed to make them work better with Lite XL. The repository with modified plugins is http://github.com/franko/lite-plugins.

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 font rendering, and reduce CPU usage.

Customization

Additional functionality can be added through plugins which are available in the plugins repository or in the Lite XL-specific plugins repository.

Additional color themes can be found in the colors repository. These color themes are bundled with all releases of Lite XL by default.

The editor can be customized by making changes to the user module.

Building

You can build Lite XL yourself using Meson.

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

The following libraries are required:

  • freetype2
  • SDL2

The following libraries are optional:

  • libagg
  • Lua 5.2

If they are not found, they will be downloaded and compiled by Meson. Otherwise, if they are present, they will be used to compile Lite XL.

On Debian-based systems the required libraries and Meson can be installed using the following 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 the commands below can be used:

meson setup --buildtype=release build
meson compile -C build
meson install -C build

If you are using a version of Meson below 0.54 you need to use diffent commands to compile and install:

meson setup --buildtype=release build
ninja -C build
ninja -C build install

When performing the meson setup command you may enable the -Dportable=true option to specify whether files should be installed as in a portable application.

If portable is enabled, Lite XL is built to use a data directory placed next to the executable. Otherwise, Lite XL will use unix-like directory locations. In this case, the data directory will be $prefix/share/lite-xl and the executable will be located in $prefix/bin. $prefix is determined when the application starts as a directory such that $prefix/bin corresponds to the location of the executable.

The user directory does not depend on the portable option and will always be $HOME/.config/lite-xl. $HOME is determined from the corresponding environment variable. As a special case on Windows the variable $USERPROFILE will be used instead.

If you compile Lite XL yourself, it is recommended to use the script build-packages.sh:

bash build-packages.sh <arch>

The script will run Meson and create a zip file with the application or, for linux, a tar compressed archive. Lite XL can be easily installed by unpacking the archive in any directory of your choice.

On Windows two packages will be created, one called "portable" using the "data" folder next to the executable and the other one using a unix-like file layout. Both packages works correctly. The one with unix-like file layout is meant for people using a unix-like shell and the command line.

Please note that there aren't any hard-coded directories in the executable, so that the package can be extracted and used in any directory.

Mac OS X is fully supported and a notarized app disk image is provided in the release page. In addition the application can be compiled using the generic instructions given above.

Contributing

Any additional functionality that can be added through a plugin should be done as a plugin, after which a pull request to the plugins repository can be made.

If the plugin uses any Lite XL-specific functionality, please open a pull request to the Lite XL plugins repository.

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.