Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Virtual Lines #1713

Draft
wants to merge 24 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
b346e47
Virtual lines begins.
adamharrison Dec 6, 2023
86246a6
Initial commit of virtual lines PR.
adamharrison Dec 29, 2023
60546ba
Making it so that linewrapping also works.
adamharrison Dec 29, 2023
771da34
Things proceed apace.
adamharrison Dec 30, 2023
4792949
We proceed apace.
adamharrison Jan 1, 2024
c5c5095
Fixed many things.
adamharrison Jan 2, 2024
086e47f
Fixed a number of bugs.
adamharrison Jan 3, 2024
5dd02d0
Standardizing naming conventions.
adamharrison Jan 3, 2024
b82cdd8
Fixed issue with resolving screen position on multi-lines.
adamharrison Jan 3, 2024
197c1aa
Added in read-only mode.
adamharrison Jan 3, 2024
0657e2a
Fixed selections.
adamharrison Jan 4, 2024
08e63a0
Gloriously beautiful.
adamharrison Jan 4, 2024
e1d81cb
Uncommented modified selcetions.
adamharrison Jan 4, 2024
6efe819
Rearranged things to be more abstracted.
adamharrison Jan 7, 2024
50fac20
Fixed line length issue.
adamharrison Jan 7, 2024
9c694ae
Rearchitected token storage.
adamharrison Jan 7, 2024
40b1d25
Fixed invalidations.
adamharrison Jan 7, 2024
58fb11d
Hooked up highlighter to syntax highlighting.
adamharrison Jan 8, 2024
95403c5
Added in rqeuest to tokenize extra lines.
adamharrison Jan 8, 2024
9567ae8
Reduced size.
adamharrison Jan 21, 2024
3c9b3c7
Bumped modversion.
adamharrison Jan 21, 2024
5a6880a
Fixed issue with cache not resizing appropriately.
adamharrison Jan 21, 2024
08fd5f7
Changed over resolve_screen_position to new system.
adamharrison Jan 21, 2024
85103ae
Mixed up order of parameters.
adamharrison Jan 21, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion data/core/command.lua
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ end
---Inserts the default commands for Lite XL into the map.
function command.add_defaults()
local reg = {
"core", "root", "command", "doc", "findreplace",
"core", "root", "command", "doc", "docview", "findreplace",
"files", "dialog", "log", "statusbar"
}
for _, name in ipairs(reg) do
Expand Down