aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/home/.config/nvim/lua/custom/plugins/search.lua
Commit message (Collapse)AuthorAgeFilesLines
* fix: disambiguate duplicate localleader-gc keymapsLibravatar sommerfeld40 hours1-0/+2
| | | | | | Both git_bcommits and git_bcommits_range were bound to <localleader>gc, with the second silently shadowing the first. Split by mode: normal for buffer commits, visual for range commits.
* fix: correct undefined FzfLua global to lowercase fzfluaLibravatar sommerfeld40 hours1-1/+1
| | | | | | 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.
* refactor(nvim): rename telescope.lua to search.luaLibravatar sommerfeld40 hours1-0/+181
The file contains fzf-lua configuration, not telescope. Name now reflects actual content.