| Age | Commit message (Collapse) | Author |
|
|
|
current file (#2324)
|
|
|
|
|
|
|
|
|
|
Corrects the following issues:
- article agreement
- spelling
|
|
|
|
|
|
|
|
|
|
|
|
|
|
find_files (#2232)
|
|
(#2246)
|
|
* feat(picker): command history filter
I've recently start using command history. For sometime was a bit annoyed of unrelevant commands
like edit/write and others (most likely only used once)
I've considered using lua patterns, however, logical `or` isn't a thing. Additionally, passing a list of lua patterns and checking each pattern for each command history entry felt tedious.
This PR introduce a new optional function to filter command history items.
For example, in my configurations
~~~lua
local command_history_ignore = vim.regex "edit\\|Move\\|write\\|Write\\|e\\s\\|lua\\sI("
overrides.command_history = minimal {
prompt_prefix = "CMDHistory> ",
filter_fn = function(item)
if #item < 3 then
return false
else
return not command_history_ignore:match_str(item)
end
end,
}
~~~
* [docgen] Update doc/telescope.txt
skip-checks: true
Co-authored-by: Github Actions <actions@github>
|
|
|
|
mapping on multiple modes (#2220)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(#2079)
|
|
Co-authored-by: TJ DeVries <devries.timothyj@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this follows nvim-treesitter more closely but enable can also be a table
of enabled languages
The config now looks like this:
```lua
defaults = {
preview = {
treesitter = {
enable = false,
-- or
enable = { "c" },
-- disable can be set if enable isn't set
disable = { "perl", "javascript" },
},
},
},
```
|
|
|
|
|
|
close #1994
|
|
|
|
|
|
lsp.(incoming|outgoing)_calls (#1484)
Fixes #863
|
|
|
|
|
|
drops `ignore_filename`, use `path_display= { "hidden" }`
Co-authored-by: Simon Hauser <Simon-Hauser@outlook.de>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|