├── .gitignore ├── CONTRIBUTING.md ├── Cask ├── ChangeLog.md ├── LICENSE ├── Makefile ├── README.md ├── circle.yml ├── elpa ├── socyl-ag.el ├── socyl-backend.el ├── socyl-custom.el ├── socyl-mode.el ├── socyl-pt.el ├── socyl-ripgrep.el ├── socyl-sift.el ├── socyl-version.el ├── socyl.el └── test ├── socyl-ag-test.el ├── socyl-pt-test.el ├── socyl-ripgrep-test.el ├── socyl-sift-test.el ├── socyl-test-helper.el └── socyl-version-test.el /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlamirault/socyl/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlamirault/socyl/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlamirault/socyl/HEAD/Cask -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlamirault/socyl/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlamirault/socyl/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlamirault/socyl/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlamirault/socyl/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlamirault/socyl/HEAD/circle.yml -------------------------------------------------------------------------------- /elpa: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /socyl-ag.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlamirault/socyl/HEAD/socyl-ag.el -------------------------------------------------------------------------------- /socyl-backend.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlamirault/socyl/HEAD/socyl-backend.el -------------------------------------------------------------------------------- /socyl-custom.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlamirault/socyl/HEAD/socyl-custom.el -------------------------------------------------------------------------------- /socyl-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlamirault/socyl/HEAD/socyl-mode.el -------------------------------------------------------------------------------- /socyl-pt.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlamirault/socyl/HEAD/socyl-pt.el -------------------------------------------------------------------------------- /socyl-ripgrep.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlamirault/socyl/HEAD/socyl-ripgrep.el -------------------------------------------------------------------------------- /socyl-sift.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlamirault/socyl/HEAD/socyl-sift.el -------------------------------------------------------------------------------- /socyl-version.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlamirault/socyl/HEAD/socyl-version.el -------------------------------------------------------------------------------- /socyl.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlamirault/socyl/HEAD/socyl.el -------------------------------------------------------------------------------- /test/socyl-ag-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlamirault/socyl/HEAD/test/socyl-ag-test.el -------------------------------------------------------------------------------- /test/socyl-pt-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlamirault/socyl/HEAD/test/socyl-pt-test.el -------------------------------------------------------------------------------- /test/socyl-ripgrep-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlamirault/socyl/HEAD/test/socyl-ripgrep-test.el -------------------------------------------------------------------------------- /test/socyl-sift-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlamirault/socyl/HEAD/test/socyl-sift-test.el -------------------------------------------------------------------------------- /test/socyl-test-helper.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlamirault/socyl/HEAD/test/socyl-test-helper.el -------------------------------------------------------------------------------- /test/socyl-version-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlamirault/socyl/HEAD/test/socyl-version-test.el --------------------------------------------------------------------------------