https://github.com/baruch/nvim-d-gf
nvim plugin to support gf command for D imports
https://github.com/baruch/nvim-d-gf
dlang nvim nvim-plugin nvim-plugins
Last synced: 8 months ago
JSON representation
nvim plugin to support gf command for D imports
- Host: GitHub
- URL: https://github.com/baruch/nvim-d-gf
- Owner: baruch
- Created: 2025-06-27T04:46:21.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-06-27T04:51:46.000Z (9 months ago)
- Last Synced: 2025-06-27T05:36:34.110Z (9 months ago)
- Topics: dlang, nvim, nvim-plugin, nvim-plugins
- Language: Lua
- Homepage:
- Size: 0 Bytes
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nvim-d-gf -- A trivial plugin to make D imports traversable with `gf`
All this plugin does is to allow D code of the form:
import my.util.file;
Which lives in the file `my/util/file.d` be opened correctly in nvim when
running the `gf`` command on top of it.
Thanks to [nvim-lua-gf](https://github.com/sam4llis/nvim-lua-gf) plugin for the
source, this is just a minor adaptation from it.