diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2026-07-09 14:05:45 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2026-07-09 14:05:45 +0200 |
| commit | 58732f983b4c2b941af6581e0c8ccae32dda21ac (patch) | |
| tree | 13858937be8d4a91b4a1fd699be7341e7e8fcf98 /.lazy.lua | |
| parent | a950ab85c994040de2737f3545a0f8c59289e80b (diff) | |
| download | kernel-58732f983b4c2b941af6581e0c8ccae32dda21ac.tar.xz kernel-58732f983b4c2b941af6581e0c8ccae32dda21ac.zip | |
ide: fix test patterns
Diffstat (limited to '.lazy.lua')
| -rw-r--r-- | .lazy.lua | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -68,7 +68,11 @@ return { nesting_rules = { ['cpp_under_hpp'] = { pattern = "(.*).hpp", - files = { "%1.cpp", "%1.test.cpp", "%1.tests.cpp", "%1.S" } + files = { "%1.cpp", "%1.tests.cpp", "%1.S" } + }, + ['tests_under_cpp'] = { + pattern = "(.*).cpp", + files = { "%1.tests.cpp" } }, }, }, |
