fix: Remove missed mentions of rawType (#875)

This commit is contained in:
traxys 2024-01-02 00:26:41 +01:00 committed by GitHub
parent 4d14c098b6
commit 8b8a1c0f4b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View file

@ -214,7 +214,7 @@ in {
''
''
Actions to be triggered for specified keybindings. It can take either action name i.e `toggle_preview`
Or it can a `rawType`.
Or it can a `rawLua`.
'';
lsp = {

View file

@ -84,7 +84,7 @@ in {
)
''
The type of `content` depends on the secton `type`:
- "text" -> a list of strings or a function (`rawType`) that requires a function that returns a table of strings
- "text" -> a list of strings or a function (`rawLua`) that requires a function that returns a table of strings
- "mapping" -> a list of list of strings in the format:
```nix
[

View file

@ -77,7 +77,7 @@ in {
after cursor.
This is either:
- a `rawType` value (`action.__raw = "function() foo end";`).
- a `rawLua` value (`action.__raw = "function() foo end";`).
- a string. In this case, Nixvim will automatically interpret it as a builtin yanky
action.
Example: `action = "put('p')";` will translate to