All Projects → lite-xl → lite-xl

lite-xl / lite-xl

Licence: MIT license
A lightweight text editor written in Lua

Programming Languages

lua
6591 projects
c
50402 projects - #5 most used programming language
shell
77523 projects
Meson
512 projects
objective c
16641 projects - #2 most used programming language

Projects that are alternatives of or similar to lite-xl

gintonic
A declarative transformation language for GraphQL 🍸
Stars: ✭ 27 (-99.03%)
Mutual labels:  code
php-tester
Run your PHP scribbles
Stars: ✭ 17 (-99.39%)
Mutual labels:  code
bcp-47
Parse and stringify BCP 47 language tags
Stars: ✭ 51 (-98.18%)
Mutual labels:  code
reveal-code-focus
A Reveal.js plugin that allows focusing on specific lines of code blocks.
Stars: ✭ 108 (-96.14%)
Mutual labels:  code
awesome.gl
棒棒哒攻略:Developer's Technical Documents, API References, Code Examples, Quick Starts, Programming minutebooks, and Tutorials. https://awesome.gl
Stars: ✭ 12 (-99.57%)
Mutual labels:  code
custom-easings-with-keyframes
🏃 Make custom non-cubic-bezier easings using keyframes and animations with this online css code generator.
Stars: ✭ 15 (-99.46%)
Mutual labels:  code
Fundamental-Kotlin
Code examples for the Fundamental Kotlin book.
Stars: ✭ 16 (-99.43%)
Mutual labels:  code
tradingview-webhooks
Backend service converting tradingview alerts into action.
Stars: ✭ 44 (-98.43%)
Mutual labels:  code
ViaCEP
The ViaCEP API/webservice .NET client
Stars: ✭ 21 (-99.25%)
Mutual labels:  code
Containerization-Automation
Study and Use of Containers and Automation Tools
Stars: ✭ 45 (-98.39%)
Mutual labels:  code
CodeWars
Daily Coding Exercises to sharpen problem solving skills
Stars: ✭ 67 (-97.6%)
Mutual labels:  code
ml dev env
Machine Learning / Deep Learning Environment. Everywhere. Anywhere.
Stars: ✭ 47 (-98.32%)
Mutual labels:  code
react-native-awesome-pin
A highly interactive and customisable PIN code screen for React Native.
Stars: ✭ 28 (-99%)
Mutual labels:  code
gogen
Command-line tool to generate GO applications and libraries
Stars: ✭ 17 (-99.39%)
Mutual labels:  code
medium-code
A place to store my jupyter notebooks for my medium articles
Stars: ✭ 27 (-99.03%)
Mutual labels:  code
code-review-culture
📖 The art of cultivating a strong dev culture in your team.
Stars: ✭ 19 (-99.32%)
Mutual labels:  code
codes2pdf
Auto-generate a PDF notebook from your source codes (useful for ACM-ICPC)
Stars: ✭ 149 (-94.67%)
Mutual labels:  code
Roassal2
Agile Visualization Engine for Pharo and VisualWorks
Stars: ✭ 23 (-99.18%)
Mutual labels:  code
flaskcode
A web based code editor on python flask framework.
Stars: ✭ 43 (-98.46%)
Mutual labels:  code
wp-googlecodeprettify
一个基于 Google Code Prettify 实现的WordPress代码高亮插件,在TinyMCE编辑器中提供了一个插入代码的按钮。在文本编辑器中,加入了pre-js,pre-css,pre-html 3个快捷按钮;
Stars: ✭ 60 (-97.85%)
Mutual labels:  code

Lite XL

CI Discord Badge Image

screenshot-dark

A lightweight text editor written in Lua, adapted from lite.

Please refer to our website for the user and developer documentation, including build instructions details. A quick build guide is described below.

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

Please note that Lite XL is compatible with lite for most plugins and all color themes. We provide a separate lite-xl-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 https://github.com/lite-xl/lite-xl-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 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.

Quick Build Guide

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

bash build-packages.sh -h

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

Otherwise the following is an example of basic commands if you want to customize the build:

meson setup --buildtype=release --prefix <prefix> build
meson compile -C build
DESTDIR="$(pwd)/lite-xl" meson install --skip-subprojects -C build

where <prefix> might be one of /, /usr or /opt, the default is /. To build a bundle application on macOS:

meson setup --buildtype=release --Dbundle=true --prefix / build
meson compile -C build
DESTDIR="$(pwd)/Lite XL.app" meson install --skip-subprojects -C build

Please note that the package is relocatable to any prefix and the option prefix affects only the place where the application is actually installed.

Installing Prebuilt

Head over to releases and download the version for your operating system.

Linux

Unzip the file and cd into the lite-xl directory:

tar -xzf <file>
cd lite-xl

To run lite-xl without installing:

cd bin
./lite-xl

To install lite-xl copy files over into appropriate directories:

mkdir -p $HOME/.local/bin && cp bin/lite-xl $HOME/.local/bin
cp -r share $HOME/.local

If $HOME/.local/bin is not in PATH:

echo -e 'export PATH=$PATH:$HOME/.local/bin' >> $HOME/.bashrc

To get the icon to show up in app launcher:

xdg-desktop-menu forceupdate

You may need to logout and login again to see icon in app launcher.

To uninstall just run:

rm -f $HOME/.local/bin/lite-xl
rm -rf $HOME/.local/share/icons/hicolor/scalable/apps/lite-xl.svg \
          $HOME/.local/share/applications/org.lite_xl.lite_xl.desktop \
          $HOME/.local/share/metainfo/org.lite_xl.lite_xl.appdata.xml \
          $HOME/.local/share/lite-xl

Contributing

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

Pull requests to improve or modify the editor itself are welcome.

Licenses

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

See the licenses file for details on licenses used by the required dependencies.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].