Skip to content

Instantly share code, notes, and snippets.

View pvzhelnov's full-sized avatar
📣
Translating knowledge

Pavel Zhelnov pvzhelnov

📣
Translating knowledge
View GitHub Profile
@jakebellacera
jakebellacera / export-vscode-search-to-csv.js
Last active October 21, 2024 21:06
Export VSCode search results to CSV
// How to use:
// 1. In VS Code, perform a search.
// 2. Click "Open in editor" to open the search results in a `.code-search` file
// 3. Save the file
// 4. In terminal, run `node export-vscode-search-to-csv.js path/to/results.code-search path/to/exported.csv`
const fs = require("fs");
const path = require("path");
const readline = require("readline");