Deleting All Dictionaries

Interesting. I ended up doing it via AppleScript:

tell application "Keyboard Maestro Engine" to ¬
	repeat with D in (dictionaries as list)
		delete D
	end repeat
2 Likes