aboutsummaryrefslogtreecommitdiff
path: root/plugins
AgeCommit message (Collapse)Author
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
2022-03-15language_php: added block_comment declarationjgmdev
2022-03-10language_php: improved uppercase constants matchingjgmdev
2022-03-07nonicons: don't perform drawing if TreeView is not visible.jgmdev
2022-03-06select_colorscheme: fix trying to load empty color scheme.jgmdev
2022-03-04Merge pull request #38 from jgmdev/language_diffJefferson González
Language Diff
2022-03-03ghmarkdown: changed default shortcut to not conflict with bracketmatch.jgmdev
2022-03-03bracketmatch: implemented selection from #21 thanks to @mart-on-windowsjgmdev
2022-03-03language_diff: be more specific on the header formatjgmdev
2022-03-03language_diff: following @Guldoman feedback simplified regex and match the ↵jgmdev
name too on emails
2022-03-03language_diff: removed unnecesary matching of words.jgmdev
2022-03-03Added language_diffjgmdev
2022-03-01language_sh: imported some patterns from language_pkgbuild to support ↵jgmdev
coloring function, variable declarations and more
2022-03-01language_pkgbuild: added arch specific keywords and params count expression ↵jgmdev
fix from language_sh.
2022-02-26Merge pull request #37 from TorchedSammy/go-goto-highlightGuldoman
language_go: add goto as keyword
2022-02-26language_go: add goto as keywordTorchedSammy
2022-02-16language_php: properly set names to the multiple syntax definitionsjgmdev
2022-02-16Added language_pkgbuildjgmdev
2022-02-12language_go: add rune to string highlightTorchedSammy
2022-02-10colorpreview: added alpha value tonumber conversion check.jgmdev
2022-02-10Merge pull request #4 from Jipok/colorpreview_alphaJefferson González
colorpreview.lua: support alpha
2022-02-10language_cpp: minor correction.jgmdev
2022-02-10language_php: added comment field because this isn't read from sub syntaxes.jgmdev
2022-02-10language_cpp: make #include <> and #include "" uniform.jgmdev
2022-02-10language_cpp: removed duplicated symbolsjgmdev
2022-02-09Fixes to language_cpp and some additions.jgmdev
2022-02-08Improvements on syntax of sh(using bash keywords)Dheisom Gomes
2022-01-26add plugin select_colorschemeAlexSol
2022-01-25language_v: add bactick string supportBenjamin Stigsen
2022-01-20"bool" addition to language_vBenjamin Stigsen