From aae0579e1a637db63d1be3a3fcceeb6d211ba978 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Sterle?= Date: Fri, 23 Apr 2021 13:13:14 +0200 Subject: [PATCH] update libuv tutorial link --- README.md | 2 +- doc/nvim-lua-guide.txt | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7cfee0b..a2dc450 100644 --- a/README.md +++ b/README.md @@ -981,7 +981,7 @@ The plugin uses the [Debug Adapter Protocol](https://microsoft.github.io/debug-a - [Official documentation for LibUV](https://docs.libuv.org/en/v1.x/) - [Luv documentation](https://github.com/luvit/luv/blob/master/docs.md) -- [teukka.tech - Using LibUV in Neovim](https://teukka.tech/vimloop.html) +- [teukka.tech - Using LibUV in Neovim](https://teukka.tech/posts/2020-01-07-vimloop/) See also: - `:help vim.loop` diff --git a/doc/nvim-lua-guide.txt b/doc/nvim-lua-guide.txt index d5a1501..71eb534 100644 --- a/doc/nvim-lua-guide.txt +++ b/doc/nvim-lua-guide.txt @@ -1218,7 +1218,8 @@ vim.loop~ - Official documentation for LibUV: https://docs.libuv.org/en/v1.x/ - Luv documentation: https://github.com/luvit/luv/blob/master/docs.md -- teukka.tech - Using LibUV in Neovim: https://teukka.tech/vimloop.html +- teukka.tech - Using LibUV in Neovim: +https://teukka.tech/posts/2020-01-07-vimloop/ See also: - |vim.loop|