9 lines
321 B
Makefile
9 lines
321 B
Makefile
#!/usr/bin/env -S just --justfile
|
|
|
|
vimspector:
|
|
echo -e "{ \"configurations\": { \"launch\": {\n \"adapter\": \"CodeLLDB\",\n \"filetypes\": [ \"rust\" ],\n \"configuration\": {\n \"request\": \"launch\",\n \"program\": \"\${workspaceRoot}/target/debug/HERE\"\n }\n }\n }\n }" >> ./.vimspector.json
|
|
|
|
|
|
p:
|
|
echo $(pwd)
|