Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-10-14 | Add language plugin for ERB files (#131) | Sathish Manohar | |
* Add language plugin for ERB files erb files typically has filename.html.erb extension they contain html markup and embedded ruby code this file should properly syntax highlight both html and ruby parts * merge html/htm in filetype check | |||
2022-10-04 | Added support for LaTex package and class syntax highlighting | Raffaele Orabona | |
2022-09-16 | Update `language_rivet.lua` (#125) | StunxFS | |
2022-09-10 | Add syntax highlighting to JSX tags (#118) | Dheisom Gomes | |
* Add syntax highlighting to JSX tags * Added "from" keyword | |||
2022-09-09 | `language_assembly_x86`: Add name | Guldoman | |
2022-08-03 | Update nonicons.lua | ArtemisX64 | |
Add Zig support to nonicons | |||
2022-07-11 | `autoinsert`: remove duplicate `Doc:get_char` call | Guldoman | |
2022-07-11 | `autoinsert`: avoid deleting wrong characters | Guldoman | |
2022-07-08 | Update language_rivet.lua | StunxFS | |
2022-06-27 | `language_crystal`: remove file as we're linking to an external repo | Guldoman | |
2022-06-20 | Syntax highlighting for intel x86 assembly (#107) | a | |
* 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> | |||
2022-06-14 | Fixed wrong icon on opened directory | Dheisom Gomes | |
2022-06-13 | Improve language_htaccess highlighting | Katrina Grace | |
- Add IPV6 highlighting, fix IPV4 clobbering long numbers - Add numbers, operators, emails - Expand keywords list to include everything shown on https://www.askapache.com/htaccess/ - Make literals list entries match in both lower and title case - Greatly reduce regex priority, since it was creating a lot of false positives (still a lot of false negatives though) - Only highlight `.htaccess`, not `something.htaccess` - Various other small tweaks and fixes | |||
2022-06-13 | Create language_htaccess.lua | Katrina Grace | |
2022-06-12 | language_v: fmt file | Ben Larisch | |
2022-06-12 | language_v: handle multiline raw strings | Ben | |
Co-authored-by: Guldoman <giulio.lettieri@gmail.com> | |||
2022-06-12 | language_v: fmt tables | Ben Larisch | |
2022-06-12 | language_v: add syntax support for raw strings | Ben Larisch | |
2022-06-12 | Merge pull request #99 from benwalksaway/go_generic_func_syntax | Guldoman | |
language_go: add syntax support for Go generic functions | |||
2022-06-12 | language_go: function pattern: match only spaces | Ben | |
Co-authored-by: Guldoman <giulio.lettieri@gmail.com> | |||
2022-06-12 | language_go: mv func keyword to original line | Ben Larisch | |
2022-06-12 | language_v: add missing table to files | Ben Larisch | |
2022-06-12 | language_go: fmt file | Ben Larisch | |
2022-06-12 | language_go: add syntax support for Go generic functions | Ben Larisch | |
2022-06-11 | Change to regex for language_php SQL strings | Katrina Grace | |
2022-06-11 | Add support for SQL strings to language_php | Katrina Grace | |
2022-06-06 | Add `align_carets` (#89) | Guldoman | |
2022-06-03 | Add more `bracketmatch` styles (#81) | Guldoman | |
* `bracketmatch`: Don't consider comments * `bracketmatch`: Add new styles * `bracketmatch`: Add "frame" style | |||
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 | 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 | 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-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-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 | |