;Winbatch 2025C (should work with earlier version)
;quick display of Windows terminal key bindings - json output
appdata = Environment('LOCALAPPDATA'):'\'
file = appdata:'Packages\Microsoft.WindowsTerminal_8wekyb3d8bbwe\LocalState\settings.json'
if FileExist(file)
Message("Terminal Key Bindings",Fileget(file))
else
Message("Terminal Key Bindings","settings.json file not found")
endif
Exit