├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ └── test.yml ├── .gitignore ├── Eask ├── Makefile ├── README.md ├── etc └── images │ ├── popwin-compile.png │ ├── popwin-find-file.png │ ├── popwin-occur.png │ ├── popwin1.png │ └── popwin2.png ├── misc ├── popwin-browse-kill-ring.el ├── popwin-pp.el ├── popwin-term.el ├── popwin-w3m.el └── popwin-yatex.el ├── popwin.el └── test ├── popwin-test.el └── reg-empty-backtrace.sh /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/popwin/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/popwin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/popwin/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/popwin/HEAD/.gitignore -------------------------------------------------------------------------------- /Eask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/popwin/HEAD/Eask -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/popwin/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/popwin/HEAD/README.md -------------------------------------------------------------------------------- /etc/images/popwin-compile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/popwin/HEAD/etc/images/popwin-compile.png -------------------------------------------------------------------------------- /etc/images/popwin-find-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/popwin/HEAD/etc/images/popwin-find-file.png -------------------------------------------------------------------------------- /etc/images/popwin-occur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/popwin/HEAD/etc/images/popwin-occur.png -------------------------------------------------------------------------------- /etc/images/popwin1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/popwin/HEAD/etc/images/popwin1.png -------------------------------------------------------------------------------- /etc/images/popwin2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/popwin/HEAD/etc/images/popwin2.png -------------------------------------------------------------------------------- /misc/popwin-browse-kill-ring.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/popwin/HEAD/misc/popwin-browse-kill-ring.el -------------------------------------------------------------------------------- /misc/popwin-pp.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/popwin/HEAD/misc/popwin-pp.el -------------------------------------------------------------------------------- /misc/popwin-term.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/popwin/HEAD/misc/popwin-term.el -------------------------------------------------------------------------------- /misc/popwin-w3m.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/popwin/HEAD/misc/popwin-w3m.el -------------------------------------------------------------------------------- /misc/popwin-yatex.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/popwin/HEAD/misc/popwin-yatex.el -------------------------------------------------------------------------------- /popwin.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/popwin/HEAD/popwin.el -------------------------------------------------------------------------------- /test/popwin-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/popwin/HEAD/test/popwin-test.el -------------------------------------------------------------------------------- /test/reg-empty-backtrace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/popwin/HEAD/test/reg-empty-backtrace.sh --------------------------------------------------------------------------------