diff options
| author | Randy Palamar <randy@rnpnr.xyz> | 2025-12-13 09:37:21 -0700 |
|---|---|---|
| committer | Randy Palamar <randy@rnpnr.xyz> | 2025-12-16 11:28:44 -0700 |
| commit | 5abe94420528d3e107eceb0f3df073e8a1270191 (patch) | |
| tree | 332ab323c429250efcd086b15dac9beff6625a60 /text.c | |
| parent | bafcf13695f80dac6d9be87b65ad6156ddc3d621 (diff) | |
| download | vis-5abe94420528d3e107eceb0f3df073e8a1270191.tar.gz vis-5abe94420528d3e107eceb0f3df073e8a1270191.tar.xz | |
make vis a single file build
Diffstat (limited to 'text.c')
| -rw-r--r-- | text.c | 18 |
1 files changed, 15 insertions, 3 deletions
@@ -13,13 +13,25 @@ #include <sys/stat.h> #include <sys/mman.h> -#include "text.h" -#include "text-util.h" -#include "text-motions.h" #include "util.h" + #include "array.h" + +#include "text.h" #include "text-internal.h" +#include "text-common.c" +#include "text-io.c" +#include "text-iterator.c" +#include "text-motions.c" +#include "text-objects.c" +#if CONFIG_TRE + #include "text-regex-tre.c" +#else + #include "text-regex.c" +#endif +#include "text-util.c" + /* A piece holds a reference (but doesn't itself store) a certain amount of data. * All active pieces chained together form the whole content of the document. * At the beginning there exists only one piece, spanning the whole document. |
