TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Tinkering with Neovim

2 pointsby MaskRay7 months ago

1 comment

MaskRay7 months ago
I have placed a lot of focus on code navigation. Here is what I mentioned in my post:<p><pre><code> nmap(&#x27;J&#x27;, &#x27;&lt;cmd&gt;Telescope lsp_definitions&lt;cr&gt;&#x27;, &#x27;Definitions&#x27;) nmap(&#x27;&lt;M-,&gt;&#x27;, &#x27;&lt;cmd&gt;Telescope lsp_references&lt;CR&gt;&#x27;, &#x27;References&#x27;) nmap(&#x27;H&#x27;, &#x27;&lt;cmd&gt;pop&lt;cr&gt;&#x27;, &#x27;Tag stack backward&#x27;) nmap(&#x27;L&#x27;, &#x27;&lt;cmd&gt;tag&lt;cr&gt;&#x27;, &#x27;Tag stack forward&#x27;) nmap(&#x27;xn&#x27;, function() M.lsp.words.jump(vim.v.count1) end, &#x27;Next reference&#x27;) nmap(&#x27;xp&#x27;, function() M.lsp.words.jump(-vim.v.count1) end, &#x27;Prev reference&#x27;)</code></pre>