aboutsummaryrefslogtreecommitdiff
path: root/data
AgeCommit message (Collapse)Author
2021-04-05Implement vim . commandvim-modeFrancesco Abbate
2021-04-05Implement vim r and ^ commandFrancesco Abbate
2021-04-02Implement vim edit inside delimitersFrancesco Abbate
2021-04-02More complete vim command yFrancesco Abbate
2021-04-02Implement vim visual modeFrancesco Abbate
2021-04-02Add vim command 'b'Francesco Abbate
2021-04-02Fix cursor display in command modeFrancesco Abbate
2021-04-02Let vim-mode accept textinput events as well as keypressFrancesco Abbate
2021-03-28More vim stuffFrancesco Abbate
2021-03-28Add begin-of-line vim commandFrancesco Abbate
2021-03-28Implement mode dependent caretFrancesco Abbate
2021-03-27Add more vim crazynessFrancesco Abbate
2021-03-27Move vim function in a specific fileFrancesco Abbate
2021-03-27Use global vim mode flagFrancesco Abbate
2021-03-25vim-mode: accept multi-digit command multiplierFrancesco Abbate
2021-03-25Replicate Vim backspace and CTRL-C behaviour (#129)Robert Štojs
2021-03-24More accurate '$' and add 'd' vim action's objectsFrancesco Abbate
2021-03-24Fix behavior of e and w vim objectsFrancesco Abbate
2021-03-24Add undo commandFrancesco Abbate
Do not insert text in command mode
2021-03-24Set the editing mode per viewFrancesco Abbate
2021-03-23Fix a few things for vim modeFrancesco Abbate
2021-03-23First preliminary implementation of vim-modeFrancesco Abbate
The basic is there and sort-of-work but largely incomplete and not yet usable.
2021-03-20Prepare release 1.16.5v1.16.5Francesco Abbate
2021-03-20Prepare 1.16.4 releasev1.16.4Francesco Abbate
2021-03-20Minor simplification of animation rate adjustmentFrancesco Abbate
2021-03-20Ensure plugin within a directory are loadedFrancesco Abbate
Close #118
2021-03-20rename tooltip_alpha_step to tooltip_alpha_ratetakase1121
2021-03-20set delay to 0.5 and disable animationtakase1121
2021-03-20show tooltips only when hovering over texttakase1121
2021-03-20prevent rendering tooltip when alpha is 0takase1121
2021-03-18Compute animation rate only if neededFrancesco Abbate
2021-03-18tooltip enhancements (#114)Takase
Add a delay to show the tooltip and other improvements.
2021-03-18Fix error introduced with commit c0ad86dFrancesco Abbate
2021-03-18Fix problem with tab size and subpixel positioningFrancesco Abbate
Solve github issue https://github.com/franko/lite-xl/issues/109
2021-03-14normalize tooltip filename to home dirtakase1121
2021-03-13add tooltips to treeview.lua (#100)Takase
2021-03-13integrate NagViewTakase
2021-03-10Make animation speed independent of config.fps, add config.animation_rate to ↵liquidev
fine-tune animation speed (#93) * animation rate config field * @franko's math magic to make it look more correct
2021-03-09more stylish tabs (#95)liquidev
2021-03-07Bump new version numberv1.16.3-lite-xlFrancesco Abbate
2021-03-07Merge remote-tracking branch 'origin/master' into subpixel-font-positioning-fixFrancesco Abbate
2021-03-07Ensure error and stack trace are written to stdoutFrancesco Abbate
To address https://github.com/franko/lite-xl/issues/87
2021-03-06Fix error related to panes resize along yFrancesco Abbate
2021-03-06Ensure filename are store relative to project directoryFrancesco Abbate
2021-03-06Ensure filename are store relative to project directoryFrancesco Abbate
2021-03-06Fix error related to panes resize along yFrancesco Abbate
2021-03-06Introduce subpixel text positioning within rencacheFrancesco Abbate
In order to fix the issue with cursor positioning a subpixel-aware draw text operation within rencache was required. With this modification the cursor positioning problem is completely resolved. A new function renderer.draw_text_subpixel is introduced to perform consecutive, inline, text drawings with subpixel accuracy.
2021-03-06Mostly fix problem of offset with cursor positioning when using mouseFrancesco Abbate
In order to get right the cursor position on text on mouse clicks it is needed to take into account text's subpixel positioning. This fix mostly corrects the problem but cursor positioning is still somewhat inaccurate for long lines due to repeated commands to draw a text along a line. Repeated draw text calls make the subpixel information lost and small errors will add-up.
2021-03-06Enable customizing cursor speed (#80)daubaris
Addresses issue #65
2021-03-05Do not assume doc.indent_info is presentFrancesco Abbate