<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Neovim on @zhisme :: signal over noise</title><link>https://zhisme.com/tags/neovim/</link><description>Recent content in Neovim on @zhisme :: signal over noise</description><generator>Hugo</generator><language>en-us</language><lastBuildDate>Mon, 24 Nov 2025 00:00:00 +0000</lastBuildDate><atom:link href="https://zhisme.com/tags/neovim/index.xml" rel="self" type="application/rss+xml"/><item><title>copy_with_context.nvim v3 Released</title><link>https://zhisme.com/articles/copy-with-context-v3-released/</link><pubDate>Mon, 24 Nov 2025 00:00:00 +0000</pubDate><guid>https://zhisme.com/articles/copy-with-context-v3-released/</guid><description>&lt;p>Previous post on original release is available at &lt;a href="https://zhisme.com/articles/copy-with-context-nvim">copy_with_context.nvim plugin released&lt;/a>.&lt;/p>
&lt;h2 id="whats-new-in-v3">What&amp;rsquo;s New in v3&lt;/h2>
&lt;h3 id="automatic-repository-url-generation">Automatic Repository URL Generation&lt;/h3>
&lt;p>The headline feature: when you copy code, the plugin now automatically includes a direct permalink to the code in your repository. No manual URL construction, no hunting for the right commit SHA—it just works.&lt;/p>
&lt;pre>&lt;code class="language-lua">-- When you copy this code, you get:
function authenticate(user)
 validate_credentials(user)
end

-- Output automatically includes:
-- app/controllers/auth_controller.rb:45-47
-- https://github.com/username/repo/blob/abc1234/app/controllers/auth_controller.rb#L45-L47
&lt;/code>&lt;/pre>
&lt;p>&lt;strong>What it does:&lt;/strong>&lt;/p></description></item><item><title>copy_with_context.nvim plugin released</title><link>https://zhisme.com/articles/copy-with-context-nvim/</link><pubDate>Sun, 13 Apr 2025 00:00:00 +0000</pubDate><guid>https://zhisme.com/articles/copy-with-context-nvim/</guid><description>&lt;p>I&amp;rsquo;m excited to announce the release of my new Neovim plugin, &lt;a href="https://github.com/zhisme/copy_with_context.nvim">copy_with_context.nvim&lt;/a>&lt;/p>
&lt;p>When sharing code snippets, it&amp;rsquo;s often useful to include the file path and line number for context. This plugin makes it easy to copy lines with this metadata. It is easier to understand the context of the code snippet when the file path and line number are included. Otherwise you have to do it manually. Copying snippet, then adding the line number &lt;em>(what if it is long config file? it is boring)&lt;/em>. We can automate it and do not waste our time.&lt;/p></description></item></channel></rss>