User contributions for Will
From wikinotes
25 April 2025
- 01:1401:14, 25 April 2025 diff hist +190 Lua variables No edit summary current
23 April 2025
- 02:4102:41, 23 April 2025 diff hist +354 NvimPlugin: lazy.nvim →Usage current
- 02:2402:24, 23 April 2025 diff hist +233 NvimPlugin: lazy.nvim →Usage
- 01:3901:39, 23 April 2025 diff hist +73 NvimPlugin: lazy.nvim No edit summary
- 01:3801:38, 23 April 2025 diff hist +382 NvimPlugin: lazy.nvim →Opts
- 01:3501:35, 23 April 2025 diff hist +387 NvimPlugin: lazy.nvim →Basic Setup
21 April 2025
- 21:0021:00, 21 April 2025 diff hist +17 NvimPlugin: lazy.nvim →Dependencies
- 21:0021:00, 21 April 2025 diff hist +17 NvimPlugin: lazy.nvim →Dependencies
- 21:0021:00, 21 April 2025 diff hist +175 NvimPlugin: lazy.nvim →Dependencies
- 20:1320:13, 21 April 2025 diff hist +91 VimPlugin: mason →Documentation current
- 19:5019:50, 21 April 2025 diff hist +20 VimPlugin: mason No edit summary
- 17:5517:55, 21 April 2025 diff hist +92 N Lua debuggers Created page with "Lua ships with a debugger. <source lang="lua"> debug.debug() -- add a tracepoint </source>" current
- 17:3317:33, 21 April 2025 diff hist +67 NvimPlugin: lazy.nvim →Documentation
- 04:3404:34, 21 April 2025 diff hist +189 Lua loops →Break / Continue current
20 April 2025
- 19:1719:17, 20 April 2025 diff hist +4 NvimPlugin: lazy.nvim →Opts
- 19:1619:16, 20 April 2025 diff hist +404 NvimPlugin: lazy.nvim →Dependencies
- 18:3018:30, 20 April 2025 diff hist +74 Neovim lua →vim.inspect() -- prettyprint current
- 17:3417:34, 20 April 2025 diff hist +67 Lua modules No edit summary current
- 17:2717:27, 20 April 2025 diff hist +379 N Neovim lua Created page with "neovim provides some helpful glue code for working with lua and vim. = vim.inspect() -- prettyprint = <blockquote> Printing a table will show you it's memory address<br> unhelpful in vim's commandline.<br> you can pretty-print a table with <code>vim.inspect(some_table)</code>. <source lang="lua"> :lua print(vim.inspect(some_table)) </source> </blockquote><!-- vim.inspect -->"
- 17:2517:25, 20 April 2025 diff hist +20 Neovim →Notes current
- 17:2317:23, 20 April 2025 diff hist +55 VimPlugin: nvim-lspconfig No edit summary current
- 17:1717:17, 20 April 2025 diff hist +38 Lua comments No edit summary current
- 17:1717:17, 20 April 2025 diff hist +182 Lua comments No edit summary
- 17:0717:07, 20 April 2025 diff hist +10 NvimPlugin: lazy.nvim →Dependencies
- 17:0717:07, 20 April 2025 diff hist +711 NvimPlugin: lazy.nvim →Basic Setup
- 16:2916:29, 20 April 2025 diff hist +35 NvimPlugin: lazy.nvim →Basic Setup
- 16:2816:28, 20 April 2025 diff hist +1,989 NvimPlugin: lazy.nvim No edit summary
- 16:0716:07, 20 April 2025 diff hist +154 Lua ldoc No edit summary current
- 16:0116:01, 20 April 2025 diff hist +163 Lua modules No edit summary
- 16:0016:00, 20 April 2025 diff hist 0 Lua modules →Examples
- 15:5915:59, 20 April 2025 diff hist −15 Lua modules →Examples
19 April 2025
- 21:2621:26, 19 April 2025 diff hist +66 NvimPlugin: lazy.nvim →Documentation
- 21:2421:24, 19 April 2025 diff hist +45 NvimPlugin: lazy.nvim →Documentation
- 21:2421:24, 19 April 2025 diff hist +139 NvimPlugin: lazy.nvim No edit summary
- 21:2321:23, 19 April 2025 diff hist +55 N NvimPlugin: lazy.nvim Created page with "A plugin manager for neovim that supports dependencies."
- 21:2321:23, 19 April 2025 diff hist +101 Vim plugins →Plugin Managers current
- 20:2720:27, 19 April 2025 diff hist +228 N Lua filesystem Created page with "Lua itself is fairly minimalist when it comes to filesystem operations.<br> Most functionality is provided by <code>io</code> or <code>os</code>.<br> In practical terms, you're mostly falling back to external libraries for this." current
- 20:2220:22, 19 April 2025 diff hist +167 Lua metatables No edit summary current
- 20:1520:15, 19 April 2025 diff hist +64 Lua →Documentation current
- 19:4519:45, 19 April 2025 diff hist +5 Lua ldoc No edit summary
- 19:4519:45, 19 April 2025 diff hist +253 N Lua ldoc Created page with "A way of generating api docs for lua libraries. <source lang="lua"> --- Calculates square -- @param x number: the input number -- @return number: the square of x -- @usage -- local sq = square(2) -- -- sq == 4 def square(x) return x * x end </source>"
- 19:4119:41, 19 April 2025 diff hist +87 N Lua libraries Created page with "= Lua Libraries = <blockquote> {| | lua ldoc |} </blockquote><!-- lua libraries -->" current
- 19:4019:40, 19 April 2025 diff hist +43 N Lua documentation Created page with "The main solution right now is lua ldoc" current
- 19:1619:16, 19 April 2025 diff hist +133 Neovim configuration →Locations current
- 18:3418:34, 19 April 2025 diff hist −18 Lua modules →Examples
- 18:1018:10, 19 April 2025 diff hist +113 N Viml print Created page with "<source lang="viml"> :echo "hi there" " prints :echom "hi there" " prints, and stored in :messages </source>" current
- 18:0918:09, 19 April 2025 diff hist +20 Viml →Syntax current
- 17:5917:59, 19 April 2025 diff hist +348 N Lua metatables Created page with "Every object in lua has a metatable.<br> These metatables have keys bound to functions that define how the object interacts with features of the lua language.<br> For example, <code>__add</code> determines how <code>your_obj + other</code> works,<br> and <code>__call</code> determines what happens if your object is called <code>your_obj()</code>."
- 17:5117:51, 19 April 2025 diff hist +123 N Lua warnings Created page with " Warnings essentially print messages to stderr. <syntaxhighlight lang="lua"> warn("something happened") </syntaxhighlight>" current
- 17:4717:47, 19 April 2025 diff hist +1,055 Lua errors No edit summary current