1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-08-08 22:48:28 -04:00

keybinds: fix lua parsing on Hyprland for non-static configuration

fixes #2753
This commit is contained in:
bbedward
2026-07-05 17:16:55 -04:00
parent 78e823e23a
commit 36ad34a555
4 changed files with 550 additions and 2 deletions
@@ -623,7 +623,7 @@ func (p *HyprlandParser) parseLuaLines(content string, baseDir, absPath, section
prevSource := p.currentSource
p.currentSource = absPath
lines := strings.Split(content, "\n")
lines := expandLuaConfigLines(strings.Split(content, "\n"))
boundInFile := make(map[string]bool)
for _, line := range lines {
trimmed := strings.TrimSpace(line)