lazy.nvim/lua/lazy/core/handler
Salomon Popp a8c6db5da7
style(types): add optional return value for LazyKeysSpec rhs (#1924)
## Description

<!-- Describe the big picture of your changes to communicate to the
maintainers
  why we should accept this pull request. -->

when `expr=true` the rhs function should return a string.

example

```lua
{
    keys = {
        {
            '<leader>j',
            function()
                return require('dial.map').inc_normal()
            end,
            expr = true,
            desc = 'Increment value',
        }
    }
}
```

## Related Issue(s)

<!--
  If this PR fixes any issues, please link to the issue here.
  - Fixes #<issue_number>
-->

## Screenshots

<!-- Add screenshots of the changes if applicable. -->
2025-02-24 07:20:35 +01:00
..
cmd.lua fix(cmd): shedule error message instead of showing directly 2023-10-17 16:52:32 +02:00
event.lua feat(profiling): merge VeryLazy stats and show startuptime in profile view 2024-07-04 15:17:10 +02:00
ft.lua refactor(handlers): lazy resolving of plugin handlers (#1126) 2023-10-16 22:34:44 +02:00
init.lua feat: add plugin name to handlers.managed 2024-07-11 22:04:06 +02:00
keys.lua style(types): add optional return value for LazyKeysSpec rhs (#1924) 2025-02-24 07:20:35 +01:00