File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -4,11 +4,15 @@ title: "Using coroutines in Neovim Lua"
4
4
date : 2024-10-20 11:00:00
5
5
tags : coroutine lua neovim
6
6
---
7
- In this blog post I describe the use of Lua coroutines in the context of Lua
8
- programming for Neovim and provide converters for callback-based code for easy
9
- interaction with existing, non-coroutine codebases.
10
- The big pay-off of using coroutines is making your asynchronous code
11
- significantly more readable at little cost once you understand them.
7
+ In this blog post:
8
+
9
+ - I describe the use of Lua coroutines in the context of Lua programming for
10
+ Neovim.
11
+ - I provide generic converters from callback-based code for easy interaction
12
+ with existing, non-coroutine codebases.
13
+
14
+ The big pay-off of using coroutines is making asynchronous code significantly
15
+ more readable.
12
16
13
17
## Motivation
14
18
You can’t perform that action at this time.
0 commit comments