summaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua
diff options
context:
space:
mode:
authorThomas Vanbesien <tvanbesi@proton.me>2026-06-13 00:26:25 +0200
committerThomas Vanbesien <tvanbesi@proton.me>2026-06-13 00:39:24 +0200
commit2b065376b0f43010ebd64f49552ab96377504079 (patch)
treec1e56afc15055abcf558a7b995b40bd17af16543 /.config/nvim/lua
parent99f4b2f13f07085ff5b131e4de2704f4d8ede62b (diff)
downloaddotfiles-2b065376b0f43010ebd64f49552ab96377504079.tar.gz
dotfiles-2b065376b0f43010ebd64f49552ab96377504079.zip
refactor(nvim): rename files and move code around
Diffstat (limited to '.config/nvim/lua')
-rw-r--r--.config/nvim/lua/dotfiles/goto.lua (renamed from .config/nvim/lua/dotfiles/follow.lua)7
1 files changed, 4 insertions, 3 deletions
diff --git a/.config/nvim/lua/dotfiles/follow.lua b/.config/nvim/lua/dotfiles/goto.lua
index e1cf109..55c076b 100644
--- a/.config/nvim/lua/dotfiles/follow.lua
+++ b/.config/nvim/lua/dotfiles/goto.lua
@@ -1,6 +1,7 @@
--- Generic "follow the thing under the cursor" engine: extracts a target (a markdown link, `<cfile>`, or the visual
--- selection), parses an optional `scheme://uri`, and opens it. Features register per-scheme resolvers and pre-target
--- follow handlers (e.g. wiki-links) so this file stays scheme-agnostic — see 50-notes.lua and 50-nvim-help.lua.
+-- Generic "follow the thing under the cursor" engine: extracts a target (a markdown link,
+-- `<cfile>`, or the visual selection), parses an optional `scheme://uri`, and opens it. Features
+-- register per-scheme resolvers and pre-target follow handlers (e.g. wiki-links) so this file stays
+-- scheme-agnostic — see 50-notes.lua and 50-nvim-help.lua.
local M = {}