Files
neovim/runtime/lua/vim/_meta
Lewis Russell a5fe8f59d9 docs: improve/add documentation of Lua types
- Added `@inlinedoc` so single use Lua types can be inlined into the
  functions docs. E.g.

  ```lua
  --- @class myopts
  --- @inlinedoc
  ---
  --- Documentation for some field
  --- @field somefield integer

  --- @param opts myOpts
  function foo(opts)
  end
  ```

  Will be rendered as

  ```
  foo(opts)

    Parameters:
      - {opts} (table) Object with the fields:
               - somefield (integer) Documentation
                 for some field
  ```

- Marked many classes with with `@nodoc` or `(private)`.
  We can eventually introduce these when we want to.
2024-03-01 23:02:18 +00:00
..
2023-09-14 08:23:01 -05:00
2024-02-27 14:41:17 +00:00
2024-02-15 11:32:50 +00:00
2024-02-27 14:41:17 +00:00
2024-02-27 14:41:17 +00:00
2024-03-02 06:42:39 +08:00