Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-05-20 | Merge pull request #92 from StunxFS/lang_v | Guldoman | |
update `language_v.lua` | |||
2022-05-20 | Update language_v.lua | StunxFS | |
2022-05-20 | Merge pull request #91 from StunxFS/update_rivet | Guldoman | |
update `language_rivet.lua` | |||
2022-05-20 | Update language_rivet.lua | StunxFS | |
2022-05-12 | Merge pull request #72 from Guldoman/PR_highlight_indentguide | Guldoman | |
Highlight current block in `indentguide` | |||
2022-05-01 | Merge pull request #84 from StunxFS/rivet | Guldoman | |
update `language_rivet.lua` | |||
2022-05-01 | Update language_rivet.lua | StunxFS | |
2022-04-30 | `selectionhighlight`: Don't draw box around the selection | Guldoman | |
2022-04-30 | `selectionhighlight`: Draw frame after drawing line body | Guldoman | |
Before, if a line was highlighted, all the frames it contained were invisible. | |||
2022-04-30 | Merge pull request #79 from sheetcoder/sheet-fixes | Guldoman | |
A plugin for generating dummy lorem ipsum text | |||
2022-04-29 | A plugin for generating dummy lorem ipsum text | sheetcoder | |
2022-04-25 | Merge pull request #68 from lite-xl/reorganize-ci | Guldoman | |
[CI] Reorganize README.md | |||
2022-04-25 | Reorganize README.md | Guldoman | |
2022-04-25 | Merge pull request #70 from FilBot3/language-containerfile | Guldoman | |
language_containerfile for Containerfiles and Dockerfiles | |||
2022-04-25 | Update README.md | FilBot3 | |
Added requested asterisk to denote repository rather than standalone file. | |||
2022-04-25 | Rename `indentguide` variables | Guldoman | |
2022-04-25 | Allow customizing `indentguide` highlight color | Guldoman | |
2022-04-24 | Add multicursor support to `indentguide` | Guldoman | |
2022-04-24 | Make `indentguide` highlight the current block | Guldoman | |
2022-04-24 | Merge pull request #71 from TorchedSammy/custom-plugins | Guldoman | |
Add plugins I've made | |||
2022-04-24 | docs: resolve merge conflict, bring in latest changes | TorchedSammy | |
2022-04-24 | docs: add my plugins | TorchedSammy | |
2022-04-23 | Update README.md | FilBot3 | |
2022-04-23 | Add how to request plugins | Guldoman | |
2022-04-22 | Merge pull request #66 from lite-xl/reorganize-ci | Guldoman | |
[CI] Reorganize README.md | |||
2022-04-22 | Reorganize README.md | Guldoman | |
2022-04-22 | Add plugin install instructions | Guldoman | |
2022-04-22 | Merge pull request #67 from StunxFS/StunxFS/add-rivet-lang | Adam | |
add `language_rivet.lua` | |||
2022-04-22 | fix | StunxFS | |
2022-04-22 | Add files via upload | StunxFS | |
2022-04-22 | Add files via upload | StunxFS | |
2022-04-22 | Delete language_glaz.lua | StunxFS | |
2022-04-21 | Merge pull request #56 from devPnal/support-autohotkey | Adam | |
Add `language_autohotkey.lua` | |||
2022-04-21 | Merge pull request #61 from Gabriel-Alves-Cunha/patch-1 | Adam | |
Update README.md | |||
2022-04-19 | Align `language_cpp` plugin with the one from lite-xl/lite-xl | jgmdev | |
2022-04-14 | Update README.md | Gabriel Alves Cunha | |
Add an explanation for newbies on how to add these plugins. | |||
2022-04-04 | Merge pull request #54 from lite-xl/reorganize-ci | Guldoman | |
[CI] Reorganize README.md | |||
2022-04-04 | Reorganize README.md | Guldoman | |
2022-04-04 | Merge pull request #57 from StunxFS/language-glaz | Guldoman | |
[language_glaz] add keyword `vec` | |||
2022-04-04 | [language_glaz] add keyword \`vec\` | StunxFS | |
2022-04-02 | Update README.md | devPnal | |
2022-04-02 | Modified README | devPnal | |
2022-04-01 | Added lsp and widget to README | jgmdev | |
2022-04-01 | add treeview-menu-extender plugin (#36) | Juliardi | |
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-30 | Merge pull request #44 from lite-xl/reorganize-ci | Guldoman | |
[CI] Reorganize README.md | |||
2022-03-24 | Reorganize README.md | adamharrison | |
2022-03-24 | Merge pull request #48 from StunxFS/update-language_glaz | Adam | |
update `language_glaz` | |||
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 |