├── .github ├── dependabot.yml └── workflows │ └── test.yml ├── .gitignore ├── Eask ├── LICENSE ├── Makefile ├── README.org ├── demo.png ├── lsp-ivy.el └── sample-project ├── create_compile_commands.rb ├── some_file.cpp └── some_other_file.cpp /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-lsp/lsp-ivy/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-lsp/lsp-ivy/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # ignore these extensions 2 | *.elc 3 | 4 | /.eask 5 | /dist 6 | -------------------------------------------------------------------------------- /Eask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-lsp/lsp-ivy/HEAD/Eask -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-lsp/lsp-ivy/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-lsp/lsp-ivy/HEAD/Makefile -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-lsp/lsp-ivy/HEAD/README.org -------------------------------------------------------------------------------- /demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-lsp/lsp-ivy/HEAD/demo.png -------------------------------------------------------------------------------- /lsp-ivy.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-lsp/lsp-ivy/HEAD/lsp-ivy.el -------------------------------------------------------------------------------- /sample-project/create_compile_commands.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-lsp/lsp-ivy/HEAD/sample-project/create_compile_commands.rb -------------------------------------------------------------------------------- /sample-project/some_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-lsp/lsp-ivy/HEAD/sample-project/some_file.cpp -------------------------------------------------------------------------------- /sample-project/some_other_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-lsp/lsp-ivy/HEAD/sample-project/some_other_file.cpp --------------------------------------------------------------------------------