Files
neovim/runtime/lua/vim
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
..
2024-02-21 06:29:53 +08:00
2023-09-20 13:42:41 +01:00
2023-12-30 17:40:53 +01:00
2024-01-16 09:33:10 +00:00
2023-09-20 13:42:41 +01:00
2024-01-19 11:54:04 +00:00
2024-02-27 14:41:17 +00:00
2024-02-27 14:41:17 +00:00