diff options
| author | 2026-04-17 10:53:04 +0100 | |
|---|---|---|
| committer | 2026-04-17 10:53:04 +0100 | |
| commit | 83018a0c318bbac4aaee6d205a1abc7c3deabf54 (patch) | |
| tree | 4918dc2141a80935b9a8a8c3f164ee45afc95ea2 | |
| parent | 7670942d3adea6e84649d7608528210a80008cff (diff) | |
| download | dotfiles-83018a0c318bbac4aaee6d205a1abc7c3deabf54.tar.gz dotfiles-83018a0c318bbac4aaee6d205a1abc7c3deabf54.tar.bz2 dotfiles-83018a0c318bbac4aaee6d205a1abc7c3deabf54.zip | |
fix: correct undefined FzfLua global to lowercase fzflua
FzfLua.actions.file_split references undefined global. The local variable
is named fzflua (lowercase). This caused a runtime error when pressing
ctrl-x in any fzf-lua file picker.
| -rw-r--r-- | home/.config/nvim/lua/custom/plugins/search.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/home/.config/nvim/lua/custom/plugins/search.lua b/home/.config/nvim/lua/custom/plugins/search.lua index d3100c1..b5a6835 100644 --- a/home/.config/nvim/lua/custom/plugins/search.lua +++ b/home/.config/nvim/lua/custom/plugins/search.lua @@ -107,7 +107,7 @@ return { actions = { files = { true, - ["ctrl-x"] = FzfLua.actions.file_split, + ["ctrl-x"] = fzflua.actions.file_split, }, }, }) |
