Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-04-22 | fix | StunxFS | |
2022-04-22 | Delete language_glaz.lua | StunxFS | |
2022-04-19 | Align `language_cpp` plugin with the one from lite-xl/lite-xl | jgmdev | |
2022-04-04 | [language_glaz] add keyword \`vec\` | StunxFS | |
2022-04-01 | typingspeed: 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-22 | update `language_glaz` | StunxFS | |
2022-03-18 | Improve `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-18 | minimap: don't show on non DocView's | jgmdev | |
2022-03-16 | fix pattern for `glaz.proj` files | StunxFS | |
2022-03-16 | add `language_glaz.lua` | StunxFS | |
2022-03-15 | language_php: added block_comment declaration | jgmdev | |
2022-03-10 | language_php: improved uppercase constants matching | jgmdev | |
2022-03-07 | nonicons: don't perform drawing if TreeView is not visible. | jgmdev | |
2022-03-06 | select_colorscheme: fix trying to load empty color scheme. | jgmdev | |
2022-03-04 | Merge pull request #38 from jgmdev/language_diff | Jefferson González | |
Language Diff | |||
2022-03-03 | ghmarkdown: changed default shortcut to not conflict with bracketmatch. | jgmdev | |
2022-03-03 | bracketmatch: implemented selection from #21 thanks to @mart-on-windows | jgmdev | |
2022-03-03 | language_diff: be more specific on the header format | jgmdev | |
2022-03-03 | language_diff: following @Guldoman feedback simplified regex and match the ↵ | jgmdev | |
name too on emails | |||
2022-03-03 | language_diff: removed unnecesary matching of words. | jgmdev | |
2022-03-03 | Added language_diff | jgmdev | |
2022-03-01 | language_sh: imported some patterns from language_pkgbuild to support ↵ | jgmdev | |
coloring function, variable declarations and more | |||
2022-03-01 | language_pkgbuild: added arch specific keywords and params count expression ↵ | jgmdev | |
fix from language_sh. | |||
2022-02-26 | Merge pull request #37 from TorchedSammy/go-goto-highlight | Guldoman | |
language_go: add goto as keyword | |||
2022-02-26 | language_go: add goto as keyword | TorchedSammy | |
2022-02-16 | language_php: properly set names to the multiple syntax definitions | jgmdev | |
2022-02-16 | Added language_pkgbuild | jgmdev | |
2022-02-12 | language_go: add rune to string highlight | TorchedSammy | |
2022-02-10 | colorpreview: added alpha value tonumber conversion check. | jgmdev | |
2022-02-10 | Merge pull request #4 from Jipok/colorpreview_alpha | Jefferson González | |
colorpreview.lua: support alpha | |||
2022-02-10 | language_cpp: minor correction. | jgmdev | |
2022-02-10 | language_php: added comment field because this isn't read from sub syntaxes. | jgmdev | |
2022-02-10 | language_cpp: make #include <> and #include "" uniform. | jgmdev | |
2022-02-10 | language_cpp: removed duplicated symbols | jgmdev | |
2022-02-09 | Fixes to language_cpp and some additions. | jgmdev | |
2022-02-08 | Improvements on syntax of sh(using bash keywords) | Dheisom Gomes | |
2022-01-26 | add plugin select_colorscheme | AlexSol | |
2022-01-25 | language_v: add bactick string support | Benjamin Stigsen | |
2022-01-20 | "bool" addition to language_v | Benjamin Stigsen | |
2022-01-17 | Merge pull request #20 from Not-a-web-Developer/master | Guldoman | |
adding gemtext highlighting plugin | |||
2022-01-18 | ohnoimessedup | Ash-Coder-or-Not | |
2022-01-17 | reversing the full-line highlighting for bullets | Ash-Coder-or-Not | |
2022-01-17 | language_php: added new PHP 8.1 keywords. | jgmdev | |
2022-01-17 | making it so that the enire line is highlighted | Ash-Coder-or-Not | |
2022-01-17 | small fixes part 2 | Ash-Coder-or-Not | |
made fixes based on the review in #20 | |||
2022-01-17 | small fixes | Ash-Coder-or-Not | |
2022-01-17 | adding gemtext highlighting plugin | Ash-Coder-or-Not | |
2022-01-14 | 'elsif' is not a keyword in batch language | drwshh | |
2021-12-29 | Merge pull request #10 from SpotlightKid/fix/sort-doc-replace-func-return-values | Adam | |
fix: [sort] func passed to Doc:replace must have two return values | |||
2021-12-24 | fix: [sort] func passed to Doc:replace must have two return values | Christopher Arndt | |
Caused error `/usr/share/lite-xl/core/doc/init.lua:443: attempt to perform arithmetic on a nil value at /usr/share/lite-xl/core/init.lua:1114` when using `sort:sort` Signed-off-by: Christopher Arndt <chris@chrisarndt.de> |