Tom Alexander
3a38f4cd35
Add support for the ast entity.
2023-08-25 04:28:24 -04:00
Tom Alexander
45e16fea2d
Honor the NO_COLOR environment variable.
2023-08-25 04:25:39 -04:00
Tom Alexander
5134cece7b
Add color to compare output.
2023-08-25 04:09:52 -04:00
Tom Alexander
19432d91ab
Get the emacs and org-mode versions when launching the compare script.
2023-08-25 03:11:19 -04:00
Tom Alexander
16a107eebb
Update org-mode version.
2023-08-25 02:56:28 -04:00
Tom Alexander
77348b560c
Parameterize the emacs and org-mode versions in the dockerfiles.
2023-08-25 02:03:35 -04:00
Tom Alexander
fc79507ef3
Merge branch 'plain_list_perf_investigation'
2023-08-25 01:10:04 -04:00
Tom Alexander
9c1e6ccc97
Add a detect_element function.
...
This is an optimization. When you have something like plain text which ends when it hits the next element, we only need to parse enough to detect that an element is about to occur. For elements like plain lists, this is as simple as parsing a line starting with optional whitespace and then a bullet, which avoids parsing the entire plain list tree. The benefit is most noticeable in deeply nested plain lists.
2023-08-25 01:07:53 -04:00
Tom Alexander
0dbc8f0925
Remove redundant exit matcher checks.
2023-08-25 00:01:56 -04:00
Tom Alexander
02fe10fba3
Move objects to a lower exit class.
...
Paragraph's exit matcher which detects elements was causing the plain list parser to exit after the first item was parsed which was causing significant amounts of re-parsing.
2023-08-24 23:34:23 -04:00
Tom Alexander
33d7ae03d1
Add a TODO.
2023-08-24 21:35:34 -04:00
Tom Alexander
03faa7257f
Move the indent level for plain list's exit matcher to const fn instead of grabbing from the context.
...
This made a slight improvement to performance.
2023-08-24 20:50:24 -04:00
Tom Alexander
ae3510abd5
Do not cast lesser block name to lowercase at runtime.
...
This reduced the runtime of my problematic test case from 6.9 seconds to 6 seconds.
2023-08-24 20:10:43 -04:00
fluxcdbot
ad3f47864a
CI: autofix rust code.
2023-08-24 23:43:41 +00:00
Tom Alexander
533ef2a9a8
Merge branch 'wrapped_input'
2023-08-24 19:40:55 -04:00
Tom Alexander
cf37bc4111
Remove unnecessary context from some util functions.
2023-08-24 19:29:00 -04:00
Tom Alexander
e5224cda63
Removing dead code.
2023-08-24 18:40:25 -04:00
Tom Alexander
64e3481660
Update get_consumed to use the new wrapped input type.
2023-08-24 18:33:40 -04:00
Tom Alexander
32071ce74d
Fix handling of start of line in OrgSource.
2023-08-24 18:08:16 -04:00
Tom Alexander
e84e2b5147
Update tests to compile again.
2023-08-24 17:15:24 -04:00
Tom Alexander
3348807a05
Eliminate the document root context element.
2023-08-24 17:01:12 -04:00
Tom Alexander
720afa5d32
Update getting the previous character and previous line.
...
This can be done a lot more efficiently now that we are keeping track of this information in the wrapped input type instead of having to fetch to the original document out of the context tree.
2023-08-24 16:56:07 -04:00
Tom Alexander
dab598e5e7
Convert all functions to using the wrapped input type.
2023-08-24 16:06:29 -04:00
Tom Alexander
b7a5dd48ea
Impl missing traits.
2023-08-22 23:32:27 -04:00
Tom Alexander
c475dce6da
Fix lifetime issue.
2023-08-22 23:14:23 -04:00
Tom Alexander
6d1675fa00
Lifetime issue.
2023-08-22 22:57:44 -04:00
Tom Alexander
cda49c628c
Move the wrapped input into the parser.
2023-08-22 22:33:50 -04:00
Tom Alexander
65b87bd65d
Merge remote-tracking branch 'input/main' into wrapped_input
2023-08-22 22:26:55 -04:00
Tom Alexander
5a7f34b63e
Prepare for merging into Organic.
2023-08-22 22:24:35 -04:00
Tom Alexander
edff1e089d
Implement text since line break.
2023-08-22 22:18:44 -04:00
Tom Alexander
bc29f1dfc0
Add slicing tests.
2023-08-22 21:38:50 -04:00
Tom Alexander
e4656cddf6
Implement slice, take, and compare.
2023-08-22 21:25:13 -04:00
Tom Alexander
1e3dadd458
Wrap the input.
2023-08-22 17:24:26 -04:00
Tom Alexander
2ec055af5a
Very simple setup.
2023-08-22 17:22:13 -04:00
Tom Alexander
6823db5c60
Initial commit.
2023-08-22 17:11:45 -04:00
Tom Alexander
21e1ceb8e0
Merge branch 'add_performance_check_scripts'
2023-08-22 14:21:44 -04:00
Tom Alexander
655af88cdf
Add scripts for running perf and callgrind.
2023-08-22 14:21:27 -04:00
Tom Alexander
8561fdc1bd
Make the autogen prefix fully integrated into the test name.
2023-08-21 00:14:10 -04:00
Tom Alexander
f2089257b0
Re-enable disabled test.
...
The latest code in org-mode has been fixed.
2023-08-21 00:08:26 -04:00
Tom Alexander
09821c8898
Prefix the automatically generated tests.
2023-08-20 23:53:11 -04:00
Tom Alexander
69ecfd2646
Move all the specific-token tests into subfolders.
2023-08-20 23:38:47 -04:00
Tom Alexander
8162f03051
Put all trailing whitespace ownership test cases into the automated tests.
...
Notes for this investigation moved to cba1d1e988/notes/plain_list_ownership_notes.org
.
Mailing list thread on the investigation: https://list.orgmode.org/9372527e-3852-419e-936a-7b4dd38cc847@app.fastmail.com/ .
2023-08-20 16:03:31 -04:00
Tom Alexander
d8c3285e3c
Add --init flag to docker run.
...
I noticed in a separate project that ctrl+c was not being honored under --init was passed, so I'm adding it in here.
2023-08-19 02:51:00 -04:00
Tom Alexander
5db6cd617e
Improve test cases for plain list ownership.
2023-08-19 02:30:31 -04:00
Tom Alexander
4cd3697fb0
Update org-mode version in dockerfile.
2023-08-18 23:20:29 -04:00
Tom Alexander
2cd6f736c2
Fix building without compare feature.
2023-08-17 00:13:25 -04:00
fluxcdbot
5686256039
CI: autofix rust code.
2023-08-17 04:05:48 +00:00
Tom Alexander
7cf1b2d2b8
Disable the failing plain list whitespace ownership test.
2023-08-17 00:03:05 -04:00
Tom Alexander
b848d7be73
Merge branch 'no_files'
2023-08-16 23:57:58 -04:00
Tom Alexander
74f4aa8d33
Remove dependency on files for running compare.
...
The tests still use files since they get the test name from a file but compare does the same action via stdin so it can operator on any org source.
2023-08-16 23:56:05 -04:00