Content
@
0 reply
20 recasts
20 reactions
Kashyab
@kashyab
Ever wondered how Cmd + Shift + F on VS Code works? It uses a powerful tool called `ripgrep` for its global search feature. Some notable features: > ripgrep searches files in parallel, taking advantage of multiple CPU cores. > it's written in rust > ripgrep uses Rust's regex engine which implements advanced automata techniques VS Code does additional optimizations like caching search results and incrementally updating the search index when files change, which makes the searches faster.
0 reply
0 recast
0 reaction