mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-14 15:56:13 +03:00

Introduces `fill`, which fills between two `Fraction`s, use this instead of `yHalfs` and friends wherever they're used, which also means we can remove `rect`. This commit does change alignment of the vertical/horizontal eighths in certain cell sizes, but the change is for the better IMO. Also changes the center-point alignment of smooth mosaics for odd cell widths, but the change is no more than half a pixel at worst and is probably an improvement ultimately.
61 lines
975 B
TOML
61 lines
975 B
TOML
[files]
|
|
extend-exclude = [
|
|
# Build
|
|
"build.zig.zon",
|
|
"build.zig.zon.nix",
|
|
"build.zig.zon.txt",
|
|
"build.zig.zon.json",
|
|
# vendored code
|
|
"vendor/*",
|
|
"pkg/*",
|
|
"src/stb/*",
|
|
# "grey" color names are valid
|
|
"src/terminal/res/rgb.txt",
|
|
# Do not self-check
|
|
"typos.toml",
|
|
# Fonts
|
|
"*.ttf",
|
|
"*.otf",
|
|
# Images
|
|
"*.png",
|
|
"*.ico",
|
|
"*.icns",
|
|
# Other
|
|
"*.pdf",
|
|
"*.data",
|
|
"*.xib",
|
|
"src/cli/lorem_ipsum.txt",
|
|
]
|
|
|
|
[default]
|
|
extend-ignore-re = [
|
|
# Ignore typos in test expectations
|
|
"testing\\.expect[^;]*;",
|
|
"kHOM\\d*",
|
|
# Ignore "typos" in sprite font draw fn names
|
|
"draw[0-9A-F]+(_[0-9A-F]+)?\\(",
|
|
]
|
|
|
|
[default.extend-words]
|
|
Pn = "Pn"
|
|
thr = "thr"
|
|
# Swift oddities
|
|
Requestor = "Requestor"
|
|
iterm = "iterm"
|
|
ACCES = "ACCES"
|
|
wdth = "wdth"
|
|
Strat = "Strat"
|
|
grey = "gray"
|
|
greyscale = "grayscale"
|
|
DECID = "DECID"
|
|
flate = "flate"
|
|
typ = "typ"
|
|
kend = "kend"
|
|
|
|
[type.po]
|
|
extend-glob = ["*.po"]
|
|
check-file = false
|
|
|
|
[type.swift.extend-words]
|
|
inout = "inout"
|