aboutsummaryrefslogtreecommitdiff
path: root/plugins
AgeCommit message (Collapse)Author
2022-05-22language_glaz: update mod and lite-xl version.jgmdev
2022-05-22hidelinenumbers: removed, the linenumbers plugin provides a better alternativejgmdev
2022-05-22hidestatus: remove since the statusbar provides this nowjgmdev
2022-05-22force_syntax: use new StatusView apijgmdev
2022-05-22rainbowparen: added ability to toggle.jgmdev
2022-05-22autowrap: show status on togglejgmdev
2022-05-22spellcheck: added toggle commandjgmdev
2022-05-22autowrap: fixed missing require 'core.common', added toggle commandjgmdev
2022-05-22bigclock: fixed fonts loading and improved performance by copying only on ↵jgmdev
scale changes
2022-05-22centerdoc: added toggle and zen mode toggle commandsjgmdev
2022-05-22datetimestamps: added insert custom commandjgmdev
2022-05-22eval: fixed eval:replace commandjgmdev
2022-05-22gitstatus: use new StatusView apijgmdev
2022-05-22linenumbers: changed to new standard config methodjgmdev
2022-05-22memoryusage: use new StatusView api, use two decimalsjgmdev
2022-05-22opacity: added some notificationsjgmdev
2022-05-22openselected: added context menu, changed conflicting shortcutjgmdev
2022-05-22restoretabs: set command predicate to niljgmdev
2022-05-22scalestatus: use new StatusView apijgmdev
2022-05-22smallclock: use new StatusView api, removed coroutinejgmdev
2022-05-22spellcheck: added context menujgmdev
2022-05-22statusclock: use new StatusView api, removed coroutine optional core.redraw ↵jgmdev
when %S is user
2022-05-22tabnumbers: make use of an unused variablejgmdev
2022-05-22unboundedscroll: added command to togglejgmdev
2022-05-22regexreplacepreview: use table.unpack in place of unpackjgmdev
2022-05-222.1: Additional version adjustments of newly added plugins.jgmdev
2022-05-22indentguide: use indent size from doc instead of configTorchedSammy
2022-05-22Appropriately merged config hashes.Adam Harrison
2022-05-22Bumping versions.Adam Harrison
2022-05-20Merge pull request #92 from StunxFS/lang_vGuldoman
update `language_v.lua`
2022-05-20Update language_v.luaStunxFS
2022-05-20Update language_rivet.luaStunxFS
2022-05-12Merge pull request #72 from Guldoman/PR_highlight_indentguideGuldoman
Highlight current block in `indentguide`
2022-05-01Update language_rivet.luaStunxFS
2022-04-30`selectionhighlight`: Don't draw box around the selectionGuldoman
2022-04-30`selectionhighlight`: Draw frame after drawing line bodyGuldoman
Before, if a line was highlighted, all the frames it contained were invisible.
2022-04-25Rename `indentguide` variablesGuldoman
2022-04-25Allow customizing `indentguide` highlight colorGuldoman
2022-04-24Add multicursor support to `indentguide`Guldoman
2022-04-24Make `indentguide` highlight the current blockGuldoman
2022-04-22fixStunxFS
2022-04-22Delete language_glaz.luaStunxFS
2022-04-19Align `language_cpp` plugin with the one from lite-xl/lite-xljgmdev
2022-04-04[language_glaz] add keyword \`vec\`StunxFS
2022-04-01typingspeed: added typingspeed plugin (#47)B14CK313
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.
2022-03-22update `language_glaz`StunxFS
2022-03-18Improve `smoothcaret` plugin (#46)Guldoman
- Add support for multiple carets - Avoid making the caret "jump" around on blink - Don't animate the caret during scroll - Consistently animate the caret on click
2022-03-18minimap: don't show on non DocView'sjgmdev
2022-03-16fix pattern for `glaz.proj` filesStunxFS
2022-03-16add `language_glaz.lua`StunxFS