Commit eacf257d authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

builder/virtualbox: recognize <tab>

parent 15f191de
......@@ -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 := "~!@#$%^&*()_+{}|:\"<>?"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment