├── .gitignore ├── .projectile ├── LICENSE.md ├── README.md └── projectile-speedbar.el /.gitignore: -------------------------------------------------------------------------------- 1 | # Temporary files 2 | *~ 3 | *#* 4 | -------------------------------------------------------------------------------- /.projectile: -------------------------------------------------------------------------------- 1 | # SCM 2 | .git/ 3 | 4 | # Temporary files 5 | *~ 6 | *#* 7 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulverma/projectile-speedbar/HEAD/README.md -------------------------------------------------------------------------------- /projectile-speedbar.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulverma/projectile-speedbar/HEAD/projectile-speedbar.el --------------------------------------------------------------------------------