├── .gitignore ├── BUGS.md ├── LICENSE.md ├── Makefile ├── README.md ├── See.c ├── TODO.md ├── acme.hook ├── bin ├── + ├── ++ ├── +++ ├── - ├── -- ├── --- ├── Acme ├── Auto ├── Blame ├── Checkout ├── Clear ├── Delall ├── Do ├── Exec ├── Getall ├── Getfn ├── Getids ├── Godoc ├── Goimports ├── Hook ├── Iswin ├── Mv ├── Open ├── Rdoc ├── Read ├── Rename ├── Rm ├── Run ├── Switch ├── To ├── Unhook ├── Write ├── XDel ├── XDump ├── XLoad ├── XPut ├── XPutall └── doGoimports └── update-doc /.gitignore: -------------------------------------------------------------------------------- 1 | bin/See 2 | *.o 3 | -------------------------------------------------------------------------------- /BUGS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/BUGS.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/README.md -------------------------------------------------------------------------------- /See.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/See.c -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/TODO.md -------------------------------------------------------------------------------- /acme.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/acme.hook -------------------------------------------------------------------------------- /bin/+: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/+ -------------------------------------------------------------------------------- /bin/++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/++ -------------------------------------------------------------------------------- /bin/+++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/+++ -------------------------------------------------------------------------------- /bin/-: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/- -------------------------------------------------------------------------------- /bin/--: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/-- -------------------------------------------------------------------------------- /bin/---: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/--- -------------------------------------------------------------------------------- /bin/Acme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/Acme -------------------------------------------------------------------------------- /bin/Auto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/Auto -------------------------------------------------------------------------------- /bin/Blame: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/Blame -------------------------------------------------------------------------------- /bin/Checkout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/Checkout -------------------------------------------------------------------------------- /bin/Clear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/Clear -------------------------------------------------------------------------------- /bin/Delall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/Delall -------------------------------------------------------------------------------- /bin/Do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/Do -------------------------------------------------------------------------------- /bin/Exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/Exec -------------------------------------------------------------------------------- /bin/Getall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/Getall -------------------------------------------------------------------------------- /bin/Getfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/Getfn -------------------------------------------------------------------------------- /bin/Getids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/Getids -------------------------------------------------------------------------------- /bin/Godoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/Godoc -------------------------------------------------------------------------------- /bin/Goimports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/Goimports -------------------------------------------------------------------------------- /bin/Hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/Hook -------------------------------------------------------------------------------- /bin/Iswin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/Iswin -------------------------------------------------------------------------------- /bin/Mv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/Mv -------------------------------------------------------------------------------- /bin/Open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/Open -------------------------------------------------------------------------------- /bin/Rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/Rdoc -------------------------------------------------------------------------------- /bin/Read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/Read -------------------------------------------------------------------------------- /bin/Rename: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/Rename -------------------------------------------------------------------------------- /bin/Rm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/Rm -------------------------------------------------------------------------------- /bin/Run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/Run -------------------------------------------------------------------------------- /bin/Switch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/Switch -------------------------------------------------------------------------------- /bin/To: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/To -------------------------------------------------------------------------------- /bin/Unhook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/Unhook -------------------------------------------------------------------------------- /bin/Write: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/Write -------------------------------------------------------------------------------- /bin/XDel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/XDel -------------------------------------------------------------------------------- /bin/XDump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/XDump -------------------------------------------------------------------------------- /bin/XLoad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/XLoad -------------------------------------------------------------------------------- /bin/XPut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/XPut -------------------------------------------------------------------------------- /bin/XPutall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/XPutall -------------------------------------------------------------------------------- /bin/doGoimports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/bin/doGoimports -------------------------------------------------------------------------------- /update-doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbivert/acme-tools/HEAD/update-doc --------------------------------------------------------------------------------