├── .dir-locals.el ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── config.yml └── workflows │ └── test.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── eglot-tests.el ├── eglot.el └── gif-examples ├── eglot-code-actions.gif ├── eglot-completions.gif ├── eglot-diagnostics.gif ├── eglot-hover-on-symbol.gif ├── eglot-rename.gif ├── eglot-snippets-on-completion.gif ├── eglot-xref-find-definition.gif └── eglot-xref-find-references.gif /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaotavora/eglot/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaotavora/eglot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaotavora/eglot/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaotavora/eglot/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaotavora/eglot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaotavora/eglot/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaotavora/eglot/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaotavora/eglot/HEAD/README.md -------------------------------------------------------------------------------- /eglot-tests.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaotavora/eglot/HEAD/eglot-tests.el -------------------------------------------------------------------------------- /eglot.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaotavora/eglot/HEAD/eglot.el -------------------------------------------------------------------------------- /gif-examples/eglot-code-actions.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaotavora/eglot/HEAD/gif-examples/eglot-code-actions.gif -------------------------------------------------------------------------------- /gif-examples/eglot-completions.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaotavora/eglot/HEAD/gif-examples/eglot-completions.gif -------------------------------------------------------------------------------- /gif-examples/eglot-diagnostics.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaotavora/eglot/HEAD/gif-examples/eglot-diagnostics.gif -------------------------------------------------------------------------------- /gif-examples/eglot-hover-on-symbol.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaotavora/eglot/HEAD/gif-examples/eglot-hover-on-symbol.gif -------------------------------------------------------------------------------- /gif-examples/eglot-rename.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaotavora/eglot/HEAD/gif-examples/eglot-rename.gif -------------------------------------------------------------------------------- /gif-examples/eglot-snippets-on-completion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaotavora/eglot/HEAD/gif-examples/eglot-snippets-on-completion.gif -------------------------------------------------------------------------------- /gif-examples/eglot-xref-find-definition.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaotavora/eglot/HEAD/gif-examples/eglot-xref-find-definition.gif -------------------------------------------------------------------------------- /gif-examples/eglot-xref-find-references.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaotavora/eglot/HEAD/gif-examples/eglot-xref-find-references.gif --------------------------------------------------------------------------------