mirror of
https://github.com/nushell/nushell.git
synced 2025-03-13 15:08:43 +01:00
# Description Enables hover/rename/references for: ```nushell def foo [] { def bar [] { } # |____________ this custom command } ``` # User-Facing Changes # Tests + Formatting +1 # After Submitting
12 lines
113 B
Plaintext
12 lines
113 B
Plaintext
# Renders some greeting message
|
|
def hello [] { }
|
|
|
|
hello
|
|
|
|
[""] | str join
|
|
^sleep
|
|
|
|
def foo [] {
|
|
def bar [] { }
|
|
}
|