├── .github └── workflows │ └── test.yml ├── LICENSE ├── README.org ├── dired-open-with.el ├── images └── dired-open-with.png └── tests └── dired-open-with-tests.el /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrostyX/dired-open-with/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrostyX/dired-open-with/HEAD/LICENSE -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrostyX/dired-open-with/HEAD/README.org -------------------------------------------------------------------------------- /dired-open-with.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrostyX/dired-open-with/HEAD/dired-open-with.el -------------------------------------------------------------------------------- /images/dired-open-with.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrostyX/dired-open-with/HEAD/images/dired-open-with.png -------------------------------------------------------------------------------- /tests/dired-open-with-tests.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrostyX/dired-open-with/HEAD/tests/dired-open-with-tests.el --------------------------------------------------------------------------------