We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1828acd commit ab429baCopy full SHA for ab429ba
fnl/conjure/client/python/stdio.fnl
@@ -283,17 +283,17 @@
283
(fn M.on-filetype []
284
(mapping.buf
285
:PythonStart (cfg [:mapping :start])
286
- M.start
+ #(M.start)
287
{:desc "Start the Python REPL"})
288
289
290
:PythonStop (cfg [:mapping :stop])
291
- M.stop
+ #(M.stop)
292
{:desc "Stop the Python REPL"})
293
294
295
:PythonInterrupt (cfg [:mapping :interrupt])
296
- M.interrupt
+ #(M.interrupt)
297
{:desc "Interrupt the current evaluation"}))
298
299
M
lua/conjure/client/python/stdio.lua
0 commit comments