We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 91a0b8a + 2e2fae8 commit fb2b5e3Copy full SHA for fb2b5e3
1 file changed
pyvim/commands/handler.py
@@ -1,3 +1,4 @@
1
+import asyncio
2
from .grammar import COMMAND_GRAMMAR
3
from .commands import call_command_handler, has_command_handler, substitute
4
@@ -33,7 +34,8 @@ def handle_command(editor, input_string):
33
34
35
elif shell_command is not None:
36
# Handle shell commands.
- editor.application.run_system_command(shell_command)
37
+ loop = asyncio.get_event_loop()
38
+ loop.create_task(editor.application.run_system_command(shell_command))
39
40
elif has_command_handler(command):
41
# Handle other 'normal' commands.
0 commit comments