We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34aa3a1 commit 2e06864Copy full SHA for 2e06864
go-playground.el
@@ -76,7 +76,8 @@ By default confirmation required."
76
"A place for playing with golang code and export it in short snippets."
77
:init-value nil
78
:lighter "Play(Go)"
79
- :keymap '(([C-return] . go-playground-exec)))
+ :keymap '(([C-return] . go-playground-exec)
80
+ ([M-return] . :cmd)))
81
82
(defun go-playground-snippet-file-name(&optional snippet-name)
83
(let ((file-name (cond (snippet-name)
@@ -138,6 +139,7 @@ func main() {
138
139
140
// === Go Playground ===
141
// Execute the snippet with Ctl-Return
142
+// Provide custom arguments to compile with Alt-Return
143
// Remove the snippet completely with its dir and all files M-x `go-playground-rm`
144
145
"))
0 commit comments