diff options
| author | Thomas Schmucker <ts@its1.de> | 2026-08-03 08:11:38 +0200 |
|---|---|---|
| committer | Thomas Schmucker <ts@its1.de> | 2026-08-03 08:11:38 +0200 |
| commit | 1fb810a94816696ad1b6b0ae1fbbf19c31de4695 (patch) | |
| tree | 67fc20e0b789e15c877e2650c5433dd00a4fa77e /nvim/lua/config/usercmds.lua | |
| parent | 230e4e630e7e2d6f26f4b78d5121b01e1061ef7f (diff) | |
| download | dotfiles-1fb810a94816696ad1b6b0ae1fbbf19c31de4695.tar.gz dotfiles-1fb810a94816696ad1b6b0ae1fbbf19c31de4695.tar.bz2 dotfiles-1fb810a94816696ad1b6b0ae1fbbf19c31de4695.zip | |
newline
Diffstat (limited to 'nvim/lua/config/usercmds.lua')
| -rw-r--r-- | nvim/lua/config/usercmds.lua | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/nvim/lua/config/usercmds.lua b/nvim/lua/config/usercmds.lua index 189dde6..bc676a2 100644 --- a/nvim/lua/config/usercmds.lua +++ b/nvim/lua/config/usercmds.lua | |||
| @@ -90,11 +90,15 @@ local function update_parsers() | |||
| 90 | return not vim.list_contains(installed, l) | 90 | return not vim.list_contains(installed, l) |
| 91 | end, langs) | 91 | end, langs) |
| 92 | 92 | ||
| 93 | -- Fuehrendes "\n", falls die vorherige Zeile (z.B. von lazy.nvim) ohne | ||
| 94 | -- Zeilenumbruch endet, und explizites flush(), damit die Meldung nicht | ||
| 95 | -- im stdout-Puffer haengen bleibt, wenn "qa" direkt danach beendet. | ||
| 93 | if #missing > 0 then | 96 | if #missing > 0 then |
| 94 | io.write("[UpdateParsers] FEHLEND: " .. table.concat(missing, ", ") .. "\n") | 97 | io.write("\n[UpdateParsers] FEHLEND: " .. table.concat(missing, ", ") .. "\n") |
| 95 | else | 98 | else |
| 96 | io.write("[UpdateParsers] alle " .. #langs .. " Parser installiert/aktuell.\n") | 99 | io.write("\n[UpdateParsers] alle " .. #langs .. " Parser installiert/aktuell.\n") |
| 97 | end | 100 | end |
| 101 | io.stdout:flush() | ||
| 98 | end | 102 | end |
| 99 | 103 | ||
| 100 | -- sonar-scanner/scripts/sonarqube.sh sind POSIX-only (kein Windows-Pendant), | 104 | -- sonar-scanner/scripts/sonarqube.sh sind POSIX-only (kein Windows-Pendant), |
