nushell/tests/fixtures/lsp/hover/command.nu
zc he 789781665d
fix(lsp): find_id for custom def in custom def (#15289)
# Description

Enables hover/rename/references for:

```nushell
def foo [] {
  def bar [] { }
     # |____________ this custom command
}
```

# User-Facing Changes

# Tests + Formatting

+1

# After Submitting
2025-03-12 07:35:28 -05:00

12 lines
113 B
Plaintext

# Renders some greeting message
def hello [] { }
hello
[""] | str join
^sleep
def foo [] {
def bar [] { }
}