mirror of
https://github.com/sbt/sbt.git
synced 2026-09-03 03:33:47 +02:00
**Problem** set every silently discards scope axes the user provides. Running: set every Test / sources := Nil empties sources in **all** scopes including Compile, not just Test. This happens because rescope in SettingCompletions.setAll strips the scope and forces Global. **Solution** Changed rescope to keep the user's config/task/extra axes and only wildcard the project axis. When no scope is given, behavior is unchanged - all axes match everything as before.