Total Posts

0

Total Commits

0

(v1: 0, v2: 0)
Total Deployments

0

Latest commit:Unable to fetch commit info
9/2/2025
Latest deployment:
pending
9/2/2025
v2
Started 9/2/2025

Built by Remco Stoeten with a little ❤️

Welcome to Snippets
Find and replace all occurrences in Neovim
Keybindings remap
Replace all without overwriting current clipboard
Neovim

Replace all without overwriting current clipboard

ggVG
"_d
"+p

Explanation

gg to go to start of the file. VG To select all below (entire file as you're at start because of gg. "_d _ prevents d from overwriting clipboard. d deletes the selection. Why " is needed, no clue. "+p to paste clipboard. Maybe only p might work.

xxx

Keybindings remap

Some rebinds I use to make me feel more at home in neovim.

Suspense Wrapper Guide for SSR and Client UX

Learn how to create, use, and master Suspense Wrappers for SSR-heavy apps in Next.js 14+ with real-world examples, best practices, and common pitfalls.

On this page

Explanation
Sep 2, 2025
3 min read
510 words