├── .github ├── dependabot.yml └── workflows │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── Eask ├── LICENSE ├── Makefile ├── README.md ├── etc └── goto-line-preview-demo.gif └── goto-line-preview.el /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-vs/goto-line-preview/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-vs/goto-line-preview/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-vs/goto-line-preview/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-vs/goto-line-preview/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Eask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-vs/goto-line-preview/HEAD/Eask -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-vs/goto-line-preview/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-vs/goto-line-preview/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-vs/goto-line-preview/HEAD/README.md -------------------------------------------------------------------------------- /etc/goto-line-preview-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-vs/goto-line-preview/HEAD/etc/goto-line-preview-demo.gif -------------------------------------------------------------------------------- /goto-line-preview.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-vs/goto-line-preview/HEAD/goto-line-preview.el --------------------------------------------------------------------------------