Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/geky/qadte
Quick and dirty tree editor
https://github.com/geky/qadte
Last synced: 1 day ago
JSON representation
Quick and dirty tree editor
- Host: GitHub
- URL: https://github.com/geky/qadte
- Owner: geky
- Created: 2024-02-05T07:17:08.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2024-02-16T20:02:36.000Z (9 months ago)
- Last Synced: 2024-04-14T18:43:29.551Z (7 months ago)
- Language: Rust
- Size: 67.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## A quick and dirty tree editor
Currently contains a mostly-incomplete parser for C, but the idea is
it should be easy enough to extend [tokenizer.rs](src/tokenizer.rs) and
[parser.rs](src/parser.rs) as needed.Edit [`edit`](src/edit.rs) to describe the desired tree transformation
then build and run:```
$ make
$ ./qadte input.c --dump-tokens
$ ./qadte input.c --dump-tree
$ ./qadte input.c -o output.c
```