2022-06-18 19:17:07 +02:00
|
|
|
# Lite XL v2 for AmigaOS 4.1 FE & MorphOS 3
|
2022-01-12 00:29:57 +01:00
|
|
|
|
2023-01-09 01:45:37 +01:00
|
|
|
Lite XL is a lightweight text editor written in Lua and SDL2.
|
2022-01-12 00:29:57 +01:00
|
|
|
|
2023-01-09 01:45:37 +01:00
|
|
|
The port is not perfect and it might have issues here and there. It might
|
|
|
|
crash from time to time, if there is a path problem, but overall it works
|
|
|
|
pretty well. This is my daily editor for any kind of development.
|
2022-06-18 19:17:07 +02:00
|
|
|
If it crashes on your system, try to delete to `.config` folder.
|
2022-04-30 15:01:39 +02:00
|
|
|
|
2023-01-09 01:45:37 +01:00
|
|
|
## Installation
|
|
|
|
You can extract the Lite XL archive wherever you want and run the *lite*
|
2022-01-12 00:29:57 +01:00
|
|
|
editor.
|
|
|
|
|
|
|
|
## Configuration folder
|
2023-01-09 01:45:37 +01:00
|
|
|
This editor creates a `.config` folder where the configuration is saved, as
|
|
|
|
well as plugins, themes etc.. By default this version uses the installation
|
|
|
|
folder, but if you want to override it, you can create an ENV variable
|
|
|
|
named `HOME` and set there your prefferable path.
|
2022-01-12 00:29:57 +01:00
|
|
|
|
|
|
|
You can check if there is one already set by executing the following command
|
|
|
|
in a shell
|
|
|
|
```
|
|
|
|
GetEnv HOME
|
|
|
|
```
|
|
|
|
If there is one set, then you will see the path at the output.
|
|
|
|
|
2023-01-09 01:45:37 +01:00
|
|
|
Otherwise, you can set your home path be executing the following command.
|
2022-01-12 00:29:57 +01:00
|
|
|
Change the path to the one of your preference.
|
|
|
|
```
|
|
|
|
SetEnv SAVE HOME "Sys:home/"
|
|
|
|
```
|
|
|
|
|
|
|
|
## Addons
|
|
|
|
### Colors
|
|
|
|
Colors are lua files that set the color scheme of the editor. There are
|
2023-01-09 01:45:37 +01:00
|
|
|
light and dark themes for you to choose.
|
2022-01-12 00:29:57 +01:00
|
|
|
|
|
|
|
To install and use them you have to copy the ones you would like from
|
|
|
|
`addons/colors/light` or `addons/colors/dark` into the folder
|
|
|
|
`.config/lite-xl/colors/`. Don't add light or dark folders. Just copy the
|
|
|
|
.lua files in there.
|
|
|
|
|
|
|
|
Then you have to start Lite XL and open your configuration by clicking
|
|
|
|
at the cog icon at the toolbar (bottom left sixth icon). Go at the line
|
|
|
|
that looks like below
|
|
|
|
```
|
|
|
|
-- core.reload_module("colors.summer")
|
2023-01-09 01:45:37 +01:00
|
|
|
```
|
2022-01-12 00:29:57 +01:00
|
|
|
and change the `summer` with the name of your color theme. Also, remove
|
|
|
|
the two dashes `--` at the start of the line and save the file. If you
|
|
|
|
did everything right, the color schema should change instantly.
|
|
|
|
|
2023-01-09 01:45:37 +01:00
|
|
|
The themes can also be found at
|
2022-01-12 00:29:57 +01:00
|
|
|
https://github.com/lite-xl/lite-xl-colors
|
|
|
|
|
|
|
|
### Plugins
|
2023-01-09 01:45:37 +01:00
|
|
|
LiteXL is able to use plugins to extend its features. Those can be found
|
|
|
|
at https://github.com/lite-xl/lite-xl-plugins and other websites. Not all
|
|
|
|
of them will work fine on AmigaOS 4 or MorphOS, because of missing
|
|
|
|
dependencies or filesystem issues.
|
2022-01-12 00:29:57 +01:00
|
|
|
|
|
|
|
To make it easier for you, I gathered some of the plugins that are working
|
2022-04-30 15:01:39 +02:00
|
|
|
well, and I included them under `addons/plugins`. For you to install the
|
2022-01-12 00:29:57 +01:00
|
|
|
ones you would like to use, you have to copy the `.lua` files into the
|
|
|
|
folder `.config/lite-xl/plugins/` and restart the editor.
|
|
|
|
|
2022-04-30 15:01:39 +02:00
|
|
|
Please, choose wisely, because adding all the plugins might make the editor
|
|
|
|
slower on your system. I would recommend you add only those that you really
|
|
|
|
need.
|
|
|
|
|
2022-01-12 00:29:57 +01:00
|
|
|
The included plugins are the following:
|
|
|
|
|
|
|
|
**autoinsert**
|
2023-01-09 01:45:37 +01:00
|
|
|
Automatically inserts closing brackets and quotes. Also allows selected
|
2022-10-10 20:06:19 +02:00
|
|
|
text to be wrapped with brackets or quotes.
|
|
|
|
|
2023-01-09 01:45:37 +01:00
|
|
|
**autosaveonfocuslost**
|
2022-10-10 20:06:19 +02:00
|
|
|
Automatically saves files that were changed when the main window loses
|
|
|
|
focus by switching to another application
|
2022-01-12 00:29:57 +01:00
|
|
|
|
|
|
|
**autowrap**
|
|
|
|
Automatically hardwraps lines when typing
|
|
|
|
|
|
|
|
**bigclock**
|
|
|
|
Shows the current time and date in a view with large text
|
|
|
|
|
|
|
|
**bracketmatch**
|
|
|
|
Underlines matching pair for bracket under the caret
|
|
|
|
|
|
|
|
**colorpreview**
|
2023-01-09 01:45:37 +01:00
|
|
|
Underlays color values (eg. `#ff00ff` or `rgb(255, 0, 255)`) with their
|
2022-01-12 00:29:57 +01:00
|
|
|
resultant color.
|
|
|
|
|
2023-01-09 01:45:37 +01:00
|
|
|
**custom_caret**
|
|
|
|
Customize the caret in the editor setting it to *underline*, *block* or
|
|
|
|
*line* at the init.lua file in your config folder.
|
|
|
|
For example add:
|
|
|
|
`config.plugins.custom_caret.shape = "block"`
|
|
|
|
|
|
|
|
**EditorConfig**
|
|
|
|
EditorConfig (https://editorconfig.org/) implementation for Lite XL
|
|
|
|
|
2022-02-05 14:28:11 +01:00
|
|
|
**ephemeral_tabs**
|
2022-01-12 00:29:57 +01:00
|
|
|
Preview tabs. Opening a doc will replace the contents of the preview tab.
|
|
|
|
Marks tabs as non-preview on any change or tab double clicking.
|
|
|
|
|
|
|
|
**ghmarkdown**
|
2022-10-10 20:06:19 +02:00
|
|
|
Opens a preview of the current markdown file in a browser window.
|
|
|
|
On AmigaOS 4 it uses *urlopen* and on MorphOS it uses *openurl* to load
|
|
|
|
the generated html in the browser.
|
2022-01-12 00:29:57 +01:00
|
|
|
|
|
|
|
**indentguide**
|
|
|
|
Adds indent guides
|
|
|
|
|
2022-10-10 20:06:19 +02:00
|
|
|
**language_guide**
|
|
|
|
Syntax for the AmigaGuide scripting language
|
|
|
|
|
|
|
|
**language_hws**
|
|
|
|
Syntax for the Hollywood language
|
|
|
|
|
2022-01-12 00:29:57 +01:00
|
|
|
**language_make**
|
|
|
|
Syntax for the Make build system language
|
|
|
|
|
|
|
|
**language_sh**
|
|
|
|
Syntax for shell scripting language
|
|
|
|
|
|
|
|
**lfautoinsert**
|
|
|
|
Automatically inserts indentation and closing bracket/text after newline
|
|
|
|
|
|
|
|
**markers**
|
|
|
|
Add markers to docs and jump between them quickly
|
|
|
|
|
2022-04-30 15:01:39 +02:00
|
|
|
**minimap**
|
2023-01-09 01:45:37 +01:00
|
|
|
Shows a minimap on the right-hand side of the docview. Please note that
|
2022-04-30 15:01:39 +02:00
|
|
|
this plugin will make the editor slower on file loading and scrolling.
|
|
|
|
|
2022-01-12 00:29:57 +01:00
|
|
|
**navigate**
|
2023-01-09 01:45:37 +01:00
|
|
|
Allows moving back and forward between document positions, reducing the
|
2022-01-12 00:29:57 +01:00
|
|
|
amount of scrolling
|
|
|
|
|
2022-10-10 20:06:19 +02:00
|
|
|
**nonicons**
|
2023-01-09 01:45:37 +01:00
|
|
|
File icons set for TreeView. Download TTF font to your config/fonts
|
2022-10-10 20:06:19 +02:00
|
|
|
folder from https://github.com/yamatsum/nonicons/tree/master/dist
|
|
|
|
|
|
|
|
**opacity**
|
2023-01-09 01:45:37 +01:00
|
|
|
Change the opaqueness/transparency of lite-xl using LAmiga+mousewheel
|
2022-10-10 20:06:19 +02:00
|
|
|
or a command.
|
|
|
|
|
|
|
|
**openfilelocation**
|
|
|
|
Opens the parent directory of the current file in the file manager
|
|
|
|
|
2022-01-12 00:29:57 +01:00
|
|
|
**rainbowparen**
|
|
|
|
Show nesting of parentheses with rainbow colours
|
|
|
|
|
|
|
|
**restoretabs**
|
2023-01-09 01:45:37 +01:00
|
|
|
Keep a list of recently closed tabs, and restore the tab in order on
|
2022-01-12 00:29:57 +01:00
|
|
|
cntrl+shift+t.
|
|
|
|
|
2022-10-10 20:06:19 +02:00
|
|
|
**select_colorscheme**
|
|
|
|
Select a color theme, like VScode, Sublime Text.
|
|
|
|
(plugin saves changes)
|
|
|
|
|
2022-01-12 00:29:57 +01:00
|
|
|
**selectionhighlight**
|
|
|
|
Highlights regions of code that match the current selection
|
|
|
|
|
2022-04-30 15:01:39 +02:00
|
|
|
**smallclock**
|
|
|
|
It adds a small clock at the bottom right corner.
|
|
|
|
|
2022-01-12 00:29:57 +01:00
|
|
|
## Tips and tricks
|
|
|
|
### Transitions
|
|
|
|
|
2022-04-30 15:01:39 +02:00
|
|
|
If you want to disable the transitions and make the editor faster,
|
2023-01-09 01:45:37 +01:00
|
|
|
open your configuration file by clicking at the cog icon at the toolbar
|
2022-04-30 15:01:39 +02:00
|
|
|
(bottom left, 6th icon) and add the following line at the end of the file,
|
2023-01-09 01:45:37 +01:00
|
|
|
and then save it. You might need to restart your editor.
|
2022-01-12 00:29:57 +01:00
|
|
|
|
|
|
|
```
|
|
|
|
config.transitions = false
|
|
|
|
```
|
|
|
|
|
|
|
|
### Hide files from the file list
|
|
|
|
|
|
|
|
If you would like to hide files or whole folder from the left side bar list,
|
2023-01-09 01:45:37 +01:00
|
|
|
open your configuration by clicking at the cog icon at the toolbar
|
2022-01-12 00:29:57 +01:00
|
|
|
(bottom left sixth icon) and add the followline at the end of the file and
|
|
|
|
save it. This hides all the files that start with a dot, and all the `.info`
|
2023-01-09 01:45:37 +01:00
|
|
|
files. You might need to restart your editor.
|
2022-01-12 00:29:57 +01:00
|
|
|
|
|
|
|
```
|
|
|
|
config.ignore_files = {"^%.", "%.info$"}
|
|
|
|
```
|
|
|
|
|
2023-01-09 01:45:37 +01:00
|
|
|
You can add as many rules as you want in there, to hide files or
|
2022-01-12 00:29:57 +01:00
|
|
|
folders, as you like.
|
|
|
|
|
2022-04-30 15:01:39 +02:00
|
|
|
## I would like to thank
|
2022-01-12 00:29:57 +01:00
|
|
|
|
2022-04-30 15:01:39 +02:00
|
|
|
- IconDesigner for the proper glow icons that are included in the release
|
2022-06-18 19:17:07 +02:00
|
|
|
- Capehill for his tireless work on SDL port for AmigaOS 4.1 FE
|
2022-04-30 15:01:39 +02:00
|
|
|
- Michael Trebilcock for his port on liblua
|
2022-06-18 19:17:07 +02:00
|
|
|
- Bruno "BeWorld" Peloille for his great work on porting SDL to MorphOS
|
|
|
|
and for his valuable help
|
2022-04-30 15:01:39 +02:00
|
|
|
- Lite XL original team for being helpful and providing info
|
|
|
|
|
|
|
|
Without all the above Lite XL would not be possible
|
|
|
|
|
|
|
|
## Support
|
|
|
|
If you enjoy what I am doing and would like to keep me up during the night,
|
|
|
|
please consider to buy me a coffee at:
|
|
|
|
https://ko-fi.com/walkero
|
|
|
|
|
|
|
|
## Known issues
|
2023-01-09 01:45:37 +01:00
|
|
|
You can find the known issues at
|
2022-01-12 00:29:57 +01:00
|
|
|
https://git.walkero.gr/walkero/lite-xl/issues
|
|
|
|
|
|
|
|
# Changelog
|
|
|
|
|
2023-05-14 12:03:41 +02:00
|
|
|
## [2.1.1r2] - 2022-05-14
|
|
|
|
### Changed
|
|
|
|
- Compiled with latest SDL v2.26.5-rc2
|
|
|
|
|
2023-01-29 13:58:56 +01:00
|
|
|
## [2.1.1r1] - 2022-01-29
|
2023-01-09 01:45:37 +01:00
|
|
|
### Changed
|
2023-01-29 13:58:56 +01:00
|
|
|
- Binary name changed to lite-xl
|
2023-01-09 01:45:37 +01:00
|
|
|
- Updated the colour themes and the plugins that are included in the release
|
2023-01-29 13:58:56 +01:00
|
|
|
- Compiled with latest SDL 2.26
|
|
|
|
- Compiled with gcc 11
|
|
|
|
- Synced the code with the upstream master branch at 8th January 2023
|
2023-01-09 01:45:37 +01:00
|
|
|
|
|
|
|
### Fixed
|
|
|
|
- Set the default locale on AmigaOS 4, so as to fix some issues with decimal
|
|
|
|
numbers
|
|
|
|
|
2022-10-10 20:06:19 +02:00
|
|
|
## [2.1.0r1] - 2022-10-10
|
|
|
|
### Added
|
|
|
|
- This version of LiteXL recognises changes that are done outside the editor
|
|
|
|
in files and folders, and updates the items when it gets focus again.
|
|
|
|
|
|
|
|
### Changed
|
|
|
|
- Synced the code with the latest upstream master branch, which means that
|
|
|
|
this version is based on the latest available source
|
|
|
|
- Now the plugins need to be version 3. The older versions will not work.
|
|
|
|
All the included plugins are updated to the latest available version.
|
|
|
|
- Compiled with SDL 2.24
|
|
|
|
- Compiled with Lua 5.4
|
|
|
|
|
|
|
|
### Fixed
|
|
|
|
- Fixed regex issues with some plugins
|
2023-01-09 01:45:37 +01:00
|
|
|
- Fixed "Open in System" on AmigaOS 4 and MorphOS. When you right click
|
|
|
|
at a file or a folder at the treeview at the left side, then depending
|
|
|
|
the type of the item opens on Workbench. A folder opens in a list view
|
2022-10-10 20:06:19 +02:00
|
|
|
and a file opens with its default tool
|
|
|
|
- Fixed markdown preview on MorphOS. Now, it calls openurl with the html
|
|
|
|
file (#20)
|
|
|
|
- Fixed locale issues on MorphOS (again), since the previous fix didn't
|
|
|
|
actually fixed the problem
|
|
|
|
|
2022-09-26 16:44:38 +02:00
|
|
|
## [2.0.3r3] - 2022-09-26
|
|
|
|
### Added
|
|
|
|
- Added plugin for AmigaGuide files
|
|
|
|
- Added plugin for Hollywood files
|
|
|
|
|
2022-08-01 19:08:23 +02:00
|
|
|
### Fixed
|
2022-09-26 15:28:59 +02:00
|
|
|
- Fixed non existing path crashes on OS4 and MorphOS
|
2023-01-09 01:45:37 +01:00
|
|
|
- Fixed editor refresh whenever init.lua is changed, no matter the working
|
2022-08-28 19:03:34 +02:00
|
|
|
folder
|
2022-08-29 21:28:33 +02:00
|
|
|
- Fixed an issue when the user added a directory in the project that
|
|
|
|
already existed
|
2022-09-26 15:28:59 +02:00
|
|
|
- Fixed locale issue on start for MorphOS. Now it should start just fine
|
|
|
|
no matter what locale the user has on his system.
|
|
|
|
- Fixed "Find" on MorphOS that was not working (shortcut CTRL+F)
|
|
|
|
- If the user selects to change the project folder and inserts Sys: or any
|
|
|
|
partition name, the included folders will be listed as suggestions
|
2023-01-09 01:45:37 +01:00
|
|
|
|
2022-09-26 15:28:59 +02:00
|
|
|
### Changed
|
|
|
|
- Removed linking with unix on OS4 build
|
|
|
|
- Makefiles updated
|
2022-08-01 19:08:23 +02:00
|
|
|
|
2022-06-18 19:17:07 +02:00
|
|
|
## [2.0.3r2] - 2022-06-18
|
|
|
|
### Added
|
|
|
|
- First public MorphOS version released
|
|
|
|
|
|
|
|
### Changed
|
|
|
|
- Merged source code for both AmigaOS 4 and MorphOS
|
|
|
|
- Moved the declaration of the $VER and $STACK for the AmigaOS 4 version,
|
|
|
|
so to happen only once (reported by capehill)
|
|
|
|
|
|
|
|
### Fixed
|
|
|
|
- Fixed the usage of NumPad (reported by root)
|
|
|
|
|
2022-04-30 15:01:39 +02:00
|
|
|
## [2.0.3r1] - 2022-03-30
|
2022-01-12 00:29:57 +01:00
|
|
|
### Changed
|
2022-02-05 14:28:11 +01:00
|
|
|
- Applied all the necessary changes to make it run under AmigaOS 4.1 FE
|
2022-04-30 15:01:39 +02:00
|
|
|
- Fixes and changes
|
|
|
|
|
|
|
|
# Disclaimer
|
|
|
|
YOU MAY USE IT AT YOUR OWN RISK!
|
2022-06-18 19:17:07 +02:00
|
|
|
I will not be held responsible for any data loss or problems you might get
|
2022-04-30 15:01:39 +02:00
|
|
|
by using this software.
|