Reading view

There are new articles available, click to refresh the page.

写了一个代码行复制的 NeoVim 插件,用于快速与同事共享代码

windcode:

最近写了一个实用的 Neovim 插件( copypath.nvim ),解决了开发者常见的痛点:如何快速与同事共享代码位置?

https://github.com/elliotxx/copypath.nvim

主要特点:

  • 在 Git 存储库中时,按 Y 复制带有行号的 GitHub/GitLab URL ,例如 https://github.com/user/repo/blob/main/file.lua#L42

  • 回退到 Git 存储库外部的相对路径 + 行号,例如 src/file.lua:42

  • 自动 SSH/HTTPS URL 转换,例如 git@host:org/repo => https://host/org/repo

使用 lazy.nvim 安装:

{ 'elliotxx/copypath.nvim' }
❌