Files
Thun/implementations/C
Simon Forman c0b582567a Handle completion of symbols with a prefix...
You can type stuff and then tab and it will work.  Before it would try
to complete the whole line, which didn't work.
2023-02-20 15:48:59 -08:00
..
2023-02-02 16:14:11 -08:00
2023-02-10 08:10:47 -08:00
2023-02-14 12:27:46 -08:00
2023-02-20 10:20:40 -08:00
2023-02-20 06:38:18 -08:00
2023-02-19 17:43:18 -08:00
2023-02-19 17:43:18 -08:00
2023-02-19 17:43:18 -08:00
2023-02-20 10:20:40 -08:00
2023-02-20 10:20:40 -08:00
2023-02-20 12:53:58 -08:00
2023-02-10 08:09:31 -08:00
2023-02-05 14:54:33 -08:00
2023-02-17 11:07:32 -08:00

Thun in C

This is my first attempt to write C in many years, I hope it's not too embarassing.

I use Gperf to create a static wordlist. This make word lookup very efficient, but there's no way currently to add definitions at runtime.

There's a janky script convert_defs.py that generates definitions.c, definitions.h, and KEYWORDS.txt from the defs.txt file. I would like to replace the dependency on Python with, say, Awk or something.