Editor highlighting
Because .scry uses Python syntax, associate the extension with Python in your editor.
VS Code
Section titled “VS Code”Add a workspace setting:
{ "files.associations": { "*.scry": "python" }}Install or enable the official Python extension for syntax highlighting, language services, and completions.
{ "file_types": { "Python": ["py", "scry"] }}Neovim
Section titled “Neovim”vim.filetype.add({ extension = { scry = "python" } })JetBrains IDEs
Section titled “JetBrains IDEs”Open Settings → Editor → File Types → Python, then add *.scry to the registered patterns.
The Scryr CLI already treats .scry as Python. To run Ruff directly, add:
[tool.ruff]extension = { scry = "python" }extend-include = ["*.scry"]