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.

I Miss Vim

4 pointsby leblancfg4 months ago

1 comment

stefanos824 months ago
Vim 9 introduced new vim9script which improved performance by orders of magnitude from old vimscript.<p>You can test those benchmarks yourself from late Bramm&#x27;s repo README file: <a href="https:&#x2F;&#x2F;github.com&#x2F;brammool&#x2F;vim9">https:&#x2F;&#x2F;github.com&#x2F;brammool&#x2F;vim9</a><p>My results are as follows:<p><pre><code> Indent time measurements 888890 Vim old: 0.678415 888890 Python: 0.170969 888890 Lua: 0.155279 888890 Vim new: 0.087310 Sum time measurements: 4499998500000 Vim old: 6.286605 4499998500000 Python: 0.439207 4499998500000 Lua: 0.075501 4499998500000 Vim new: 0.119775 </code></pre> The Lua used here is LuaJIT, not standard Lua!