Age | Commit message (Collapse) | Author |
|
Add `primary_selection`
|
|
* Syntax highlighter for the Miniscript language
* Update README.md
|
|
|
|
|
|
* Fixed Crystal Plugin Link
* Update README.md
Co-authored-by: Guldoman <giulio.lettieri@gmail.com>
Co-authored-by: Guldoman <giulio.lettieri@gmail.com>
|
|
* Added language_ignore plugin
I made simple syntax highlighting plugin for ignore-files. More info in my repo: https://github.com/anthonyaxenov/lite-xl-ignore-syntax
* Fixed asterisk after the language_ignore plugin
Co-authored-by: Guldoman <giulio.lettieri@gmail.com>
Co-authored-by: Guldoman <giulio.lettieri@gmail.com>
|
|
A gif of the motiontrail plugin is linked on line 147, but it is referred to as a "screenshot".
https://github.com/lite-xl/lite-xl-plugins/blob/a46a62608edd0ef50a8494e5c9502d94b8a145dc/README.md?plain=1#L147
This was corrected.
|
|
|
|
* Assembly x86 syntax highlighting
* Little fixes
* Highlight other hex pattern
e.g. deadbeef123h
* Add use64 to symbols
* Include $ as an operator
* Remove broken symbols
Never seen them used anyway?
* Made some bits more consistent
Hex & binary notation with uppercase letters now too
* Formatted
* Removed duplicate | in pattern
* `language_assembly_x86`: simplify extension pattern
* Fixed broken symbols
Co-authored-by: Guldoman <giulio.lettieri@gmail.com>
|
|
|
|
* added language_caddyfile
|
|
|
|
|
|
|
|
|
|
* Appropriately merged config hashes.
* indentguide: use indent size from doc instead of config
* added settings gui plugin
* added new animation/transition settings
* overwrite ToolbarView settings command
* Introduced new button type
* Added button to open user module on General section
* settings: partially implemented keybindings
* initial support for settings.type.LIST_STRINGS
* added on_apply, prettify settings file and other fixes
* added ability to save keybinds and apply at startup
* dropped custom prettify in favor of new common.serialize support
* handle plugins enable/disable
* added priority:0
* added color theme chooser pane
* do not remove duplicated colors
* properly list all shortcuts assigned to a command
* handle multiple bindings per command
* custom drawing of colors preview
* added video preview to readme
* removed unused settings.type.LIST_NUMBERS
|
|
Co-authored-by: Guldoman <giulio.lettieri@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
language_containerfile for Containerfiles and Dockerfiles
|
|
Added requested asterisk to denote repository rather than standalone file.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Add `language_autohotkey.lua`
|
|
Add an explanation for newbies on how to add these plugins.
|
|
|
|
|
|
|
|
|
|
|
|
This plugin displays your current typing speed in characters per minute
and words per minute in the status bar.
I tried to keep the logic very simple, so instead of using real accurate
values, it counts characters/words in the current minute and adds
the value of the previous minute multiplied by the percentage needed to
'complete' the current minute (so it basically always displays the value
for one minute, but the part of it that falls into the last minute uses
the average):
```
words_last * (1 - (t.sec) / 60) + words
```
This should give fairly good results without the need for complicated code
or falling back to 0 after every minute.
|
|
|
|
|
|
* Update README.md
|
|
|
|
|
|
|
|
|
|
|
|
Co-authored-by: Guldoman <giulio.lettieri@gmail.com>
|