codep

Crates.iocodep
lib.rscodep
version0.6.8
created_at2025-05-23 16:04:52.913562+00
updated_at2025-05-23 18:13:21.209808+00
descriptionCLI for getting a list of recently used VSCode files and workspaces.
homepage
repositoryhttps://github.com/Relacibo/code-pick-rs
max_upload_size
id1686466
size41,080
Reinhard Bronner (Relacibo)

documentation

README

code-pick-rs

Input for e.g. rofi for selecting an entry from a list of recently opened folders/files or a list of workspaces to be opened in vscode. The recent folders/files are extracted from ~/.config/Code/User/globalStorage/storage.json and the workspaces from ~/.config/Code/User/workspaceStorage. Please feel free to write an issue, if something doesn't output as expected...

Install

cargo install codep

or

cargo install --path .

Usage

I use it as a bind in my hyperland.conf with rofi:

bind = $mainMod SHIFT, C, exec, ~/.cargo/bin/codep -a recent \
    | rofi -dmenu \
    | xargs -r -I {} code --new-window "{}"
bindr = $mainMod&CTRL&SHIFT, C, exec, \
    ~/.cargo/bin/codep -ap workspaces -D -M 365 \
        | rofi -dmenu -markup-rows -display-columns 2 \
        | awk -F '\t' '{print $1}' \
        | xargs -r -I {} code --folder-uri "{}"

codep --help for more info!

Environment Variables

CODEP_CONFIG_ROOT (default: ~/.config/Code) - Alternative config root

Commit count: 51

cargo fmt