feat: add search_dirs to split_keywords table (#986)

This allows the command parser to correctly split `search_dirs` into a
table. Should solve nvim-telescope/telescope.nvim#985
This commit is contained in:
Jonathan Teran
2021-07-14 17:11:07 -03:00
committed by GitHub
parent 876bed9632
commit 37a3a68a78

View File

@@ -123,7 +123,8 @@ end
local split_keywords = { local split_keywords = {
['find_command'] = true, ['find_command'] = true,
['vimgrep_arguments'] = true, ['vimgrep_arguments'] = true,
['sections'] = true ['sections'] = true,
['search_dirs'] = true
} }
function command.register_keyword(keyword) function command.register_keyword(keyword)