惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
C
CERT Recently Published Vulnerability Notes
V
Vulnerabilities – Threatpost
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
L
Lohrmann on Cybersecurity
C
CXSECURITY Database RSS Feed - CXSecurity.com
Schneier on Security
Schneier on Security
T
Threatpost
P
Proofpoint News Feed
MongoDB | Blog
MongoDB | Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
大猫的无限游戏
大猫的无限游戏
T
Threat Research - Cisco Blogs
罗磊的独立博客
Security Latest
Security Latest
D
Docker
S
Secure Thoughts
博客园 - 聂微东
A
Arctic Wolf
Recorded Future
Recorded Future
雷峰网
雷峰网
Microsoft Azure Blog
Microsoft Azure Blog
The Cloudflare Blog
P
Palo Alto Networks Blog
Project Zero
Project Zero
Blog — PlanetScale
Blog — PlanetScale
D
Darknet – Hacking Tools, Hacker News & Cyber Security
H
Help Net Security
T
The Blog of Author Tim Ferriss
Latest news
Latest news
AWS News Blog
AWS News Blog
U
Unit 42
Stack Overflow Blog
Stack Overflow Blog
The GitHub Blog
The GitHub Blog
Know Your Adversary
Know Your Adversary
Vercel News
Vercel News
WordPress大学
WordPress大学
Spread Privacy
Spread Privacy
F
Full Disclosure
Martin Fowler
Martin Fowler
T
The Exploit Database - CXSecurity.com
Attack and Defense Labs
Attack and Defense Labs
Y
Y Combinator Blog
Microsoft Security Blog
Microsoft Security Blog
V
V2EX
M
MIT News - Artificial intelligence
P
Proofpoint News Feed
小众软件
小众软件
宝玉的分享
宝玉的分享

Neovim

AI 时代, Neovim/Vim 尚能饭否? - V2EX 开发了一个插件,解决 TS 的 LSP 返回的 inlay hint 太长的问题,实现类似 VSCode 的效果 - V2EX 自荐一个天气插件,方便同时对比 3 个城市的天气 - V2EX neovim 终于把开箱即用放到 roadmap 中了 blink-copilot - 同时支持 copilot.vim 和 copilot.lua 的 blink.cmp 代码补全源 - V2EX go-impl.nvim - 一个基于 impl 的 Go 接口实现插件 - V2EX 我的第一个 neovim 插件: gomodifytags.nvim - V2EX Neovim Java 开发环境 添加了 Sprint Boot LS 支持 - V2EX 请教关于 nvim 的消息框 ui 设置 - V2EX nvim-ts-rainbow 之类的插件会变卡 - V2EX 请教大佬们一个问题, Neovim 中每次 prisma generate 之后没办法立即识别生成的 client,所以没有代码提示,有什么好的办法吗? - V2EX 请教一下这个 neovim 的发光主题是啥 - V2EX 从锁屏返回后 Neovim-qt 卡死 - V2EX 推荐使用 LazyVim 配置 - V2EX 一个便于开发 telescope extension 的工具 - V2EX 自荐一套 nvim 配置 one.nvim - V2EX 如何在 Neovim 切换 Python 的虚拟环境? - V2EX 从 init.vim 迁移到 init.lua 有什么优势吗? - V2EX 求推荐 nvim 配置主题 - V2EX feat: set cmdheight=0 刚刚合并了! - V2EX 我的这个 neovim init.vim 配置,怎么突然不能用了? - V2EX Nvim 0.5 shipped today - V2EX neovim 的设置文件或者插件目录,怎么设置成在 mac & windows 下面通用啊? - V2EX 为什么我安装不上去 neovim for Python ? ruby 也配置不好,我已经升级到最新了呢。 - V2EX 如何在 Neovim 中同时打开多个文件。 - V2EX 如何在 Neovim 和 Vim 中快速插入 Unicode 字符 - V2EX hello Neovim - V2EX
写了一个代码行复制的 NeoVim 插件,用于快速与同事共享代码 - V2EX
windcode · 2025-01-08 · via Neovim

windcode

V2EX  ›  Neovim

 

windcode · 2025 年 1 月 8 日 · 1636 次点击

这是一个创建于 522 天前的主题,其中的信息可能已经有所发展或是发生改变。

最近写了一个实用的 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' }