зеркало из https://github.com/golang/tools.git
playground: add ctrl-enter shortcut for gofmt (as in the tour)
LGTM=adg R=adg CC=golang-codereviews https://golang.org/cl/120420044
This commit is contained in:
Родитель
cf8082eec5
Коммит
82b913fb17
|
@ -285,6 +285,9 @@ function PlaygroundOutput(el) {
|
|||
run();
|
||||
e.preventDefault();
|
||||
return false;
|
||||
} if (e.ctrlKey) { // +control
|
||||
fmt();
|
||||
e.preventDefault();
|
||||
} else {
|
||||
autoindent(e.target);
|
||||
}
|
||||
|
|
|
@ -2307,6 +2307,9 @@ function PlaygroundOutput(el) {
|
|||
run();
|
||||
e.preventDefault();
|
||||
return false;
|
||||
} if (e.ctrlKey) { // +control
|
||||
fmt();
|
||||
e.preventDefault();
|
||||
} else {
|
||||
autoindent(e.target);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче