Build systems, Makefile, and a setup script that reproduces this environment on another machine. - CP.sublime-build: incremental make-based build, clang++, flags shared with clangd via compile_flags.txt - compete_CPP.sublime-build: competitive-programming workflow, runs against inputf.in and diffs the result against expectedf.out - Makefile: builds every .cpp in the tree into a binary beside its source - setup.sh: export/install/check, path-neutral payload, idempotent - README: setup notes, the Sublime $-expansion trap, and the -MMD -MP header-dependency limitation to fix later The .sublime-workspace is deliberately excluded: it holds Sublime's global recent-file history and absolute paths. Only the pane layout is portable, extracted to sublime/layout.json. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01KCtkkFDkSGi868JWuinwcF
20 lines
526 B
JSON
20 lines
526 B
JSON
[
|
|
// Competitive-programming layout: code on the left, inputf.in top-right,
|
|
// outputf.out bottom-right. Cells are [col_start, row_start, col_end, row_end].
|
|
{
|
|
"keys": ["ctrl+alt+shift+c"],
|
|
"command": "set_layout",
|
|
"args":
|
|
{
|
|
"cols": [0.0, 0.5, 1.0],
|
|
"rows": [0.0, 0.5, 1.0],
|
|
"cells": [[0, 0, 1, 2], [1, 0, 2, 1], [1, 1, 2, 2]]
|
|
}
|
|
},
|
|
// Back to a single pane.
|
|
{
|
|
"keys": ["ctrl+alt+shift+1"],
|
|
"command": "set_layout",
|
|
"args": { "cols": [0.0, 1.0], "rows": [0.0, 1.0], "cells": [[0, 0, 1, 1]] }
|
|
}
|
|
]
|