├── .gitattributes ├── .github └── workflows │ └── test.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── examples.md ├── friendly-remote-shell.el ├── friendly-shell-command.el ├── friendly-shell.el └── makem.sh /.gitattributes: -------------------------------------------------------------------------------- 1 | makem.sh linguist-vendored 2 | -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3r7/friendly-shell/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # compiled & binary files 3 | **.elc 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3r7/friendly-shell/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3r7/friendly-shell/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3r7/friendly-shell/HEAD/README.md -------------------------------------------------------------------------------- /examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3r7/friendly-shell/HEAD/examples.md -------------------------------------------------------------------------------- /friendly-remote-shell.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3r7/friendly-shell/HEAD/friendly-remote-shell.el -------------------------------------------------------------------------------- /friendly-shell-command.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3r7/friendly-shell/HEAD/friendly-shell-command.el -------------------------------------------------------------------------------- /friendly-shell.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3r7/friendly-shell/HEAD/friendly-shell.el -------------------------------------------------------------------------------- /makem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3r7/friendly-shell/HEAD/makem.sh --------------------------------------------------------------------------------