From b6e02de73b0619812a4ccf02217c2b183c389879 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Sterle?= Date: Thu, 25 Feb 2021 20:04:02 +0100 Subject: [PATCH] add link to LuaJIT intro closes #51 --- README.md | 2 +- doc/nvim-lua-guide.txt | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4abbed6..65ed3fa 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ If you are not already familiar with the language, there are plenty of resources It should also be noted that Lua is a very clean and simple language. It is easy to learn, especially if you have experience with similar scripting languages like JavaScript. You may already know more Lua than you realise! -Note: the version of Lua that Neovim embeds is LuaJIT 2.1.0, which maintains compatibility with Lua 5.1 (with a few 5.2 extensions). +Note: the version of Lua that Neovim embeds is [LuaJIT](https://staff.fnwi.uva.nl/h.vandermeer/docs/lua/luajit/luajit_intro.html) 2.1.0, which maintains compatibility with Lua 5.1 (with a few 5.2 extensions). ### Existing tutorials for writing Lua in Neovim diff --git a/doc/nvim-lua-guide.txt b/doc/nvim-lua-guide.txt index d1980b9..72c1390 100644 --- a/doc/nvim-lua-guide.txt +++ b/doc/nvim-lua-guide.txt @@ -38,8 +38,10 @@ It should also be noted that Lua is a very clean and simple language. It is easy to learn, especially if you have experience with similar scripting languages like JavaScript. You may already know more Lua than you realise! -Note: the version of Lua that Neovim embeds is LuaJIT 2.1.0, which -maintains compatibility with Lua 5.1 (with a few 5.2 extensions). +Note: the version of Lua that Neovim embeds is LuaJIT: +https://staff.fnwi.uva.nl/h.vandermeer/docs/lua/luajit/luajit_intro.html +2.1.0, which maintains compatibility with Lua 5.1 with a few 5.2 +extensions . Existing tutorials for writing Lua in Neovim~