├── .github └── workflows │ └── test.yml ├── .gitignore ├── AUTHORS ├── BUGS ├── ChangeLog ├── LICENSE ├── Makefile ├── README.md ├── TODO ├── enh-367.patch ├── enh-370.patch ├── images ├── graphical-367.png ├── terminal-37.gif └── tiles-37.gif ├── mkpatch ├── nethack-api.el ├── nethack-cmd.el ├── nethack-compat.el ├── nethack-gen-tiles.el ├── nethack-keys.el ├── nethack-lisprec.el ├── nethack-options.el ├── nethack.el └── test ├── nethack-tests.el └── test.lisprec.gz /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feyorsh/nethack-el/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feyorsh/nethack-el/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feyorsh/nethack-el/HEAD/AUTHORS -------------------------------------------------------------------------------- /BUGS: -------------------------------------------------------------------------------- 1 | Probably infinite. 2 | 3 | See also `./TODO` 4 | -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feyorsh/nethack-el/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feyorsh/nethack-el/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feyorsh/nethack-el/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feyorsh/nethack-el/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feyorsh/nethack-el/HEAD/TODO -------------------------------------------------------------------------------- /enh-367.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feyorsh/nethack-el/HEAD/enh-367.patch -------------------------------------------------------------------------------- /enh-370.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feyorsh/nethack-el/HEAD/enh-370.patch -------------------------------------------------------------------------------- /images/graphical-367.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feyorsh/nethack-el/HEAD/images/graphical-367.png -------------------------------------------------------------------------------- /images/terminal-37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feyorsh/nethack-el/HEAD/images/terminal-37.gif -------------------------------------------------------------------------------- /images/tiles-37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feyorsh/nethack-el/HEAD/images/tiles-37.gif -------------------------------------------------------------------------------- /mkpatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feyorsh/nethack-el/HEAD/mkpatch -------------------------------------------------------------------------------- /nethack-api.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feyorsh/nethack-el/HEAD/nethack-api.el -------------------------------------------------------------------------------- /nethack-cmd.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feyorsh/nethack-el/HEAD/nethack-cmd.el -------------------------------------------------------------------------------- /nethack-compat.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feyorsh/nethack-el/HEAD/nethack-compat.el -------------------------------------------------------------------------------- /nethack-gen-tiles.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feyorsh/nethack-el/HEAD/nethack-gen-tiles.el -------------------------------------------------------------------------------- /nethack-keys.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feyorsh/nethack-el/HEAD/nethack-keys.el -------------------------------------------------------------------------------- /nethack-lisprec.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feyorsh/nethack-el/HEAD/nethack-lisprec.el -------------------------------------------------------------------------------- /nethack-options.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feyorsh/nethack-el/HEAD/nethack-options.el -------------------------------------------------------------------------------- /nethack.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feyorsh/nethack-el/HEAD/nethack.el -------------------------------------------------------------------------------- /test/nethack-tests.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feyorsh/nethack-el/HEAD/test/nethack-tests.el -------------------------------------------------------------------------------- /test/test.lisprec.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Feyorsh/nethack-el/HEAD/test/test.lisprec.gz --------------------------------------------------------------------------------