about summary refs log tree commit diff
path: root/src/tools/x/Cargo.lock
AgeCommit message (Collapse)AuthorLines
2025-03-13Add `src/tools/x` to the main workspaceJosh Stone-7/+0
The original reason to exclude it was so it could run before submodules were initialized. However, those have all been converted to subtrees now, so the entire workspace is always ready to go.
2023-05-26Add other workspaces to `linkedProjects` in `rust_analyzer_settings.json`jyn-1/+3
This makes go-to-definition, etc. work in cg_clif, cg_gcc, rust-analyzer, and src/tools/x.
2020-11-03Add a tool to run `x.py` from any subdirectoryCasey Rodarmor-0/+5
This adds a binary called `x` in `src/tools/x`. All it does is check the current directory and its ancestors for a file called `x.py`, and if it finds one, runs it. By installing x, you can easily `x.py` from any subdirectory. It can be installed globally with `cargo install --path src/tools/x`