builder/virtualbox: recognize <tab>

This commit is contained in:
Mitchell Hashimoto 2013-06-23 21:50:16 -07:00
parent 15f191deb0
commit eacf257d83
1 changed files with 2 additions and 1 deletions

View File

@ -82,8 +82,9 @@ func (*stepTypeBootCommand) Cleanup(map[string]interface{}) {}
func scancodes(message string) []string {
special := make(map[string][]string)
special["<enter>"] = []string{"1c", "9c"}
special["<return>"] = []string{"1c", "9c"}
special["<esc>"] = []string{"01", "81"}
special["<return>"] = []string{"1c", "9c"}
special["<tab>"] = []string{"0f", "8f"}
shiftedChars := "~!@#$%^&*()_+{}|:\"<>?"