From d8229a93d7b71f22c66ca35ac9e6c6cd850ec61d Mon Sep 17 00:00:00 2001 From: Felipe Lema <1232306+FelipeLema@users.noreply.github.com> Date: Mon, 16 Jan 2023 16:20:03 -0300 Subject: [PATCH] update docs --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5431c6b..561503a 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,15 @@ -# cmp-path +# cmp-async-path -nvim-cmp source for filesystem paths. +nvim-cmp source for filesystem paths with async processing (neovim won't block while reading from disk). + +forked from https://github.com/hrsh7th/cmp-path/ # Setup ```lua require'cmp'.setup { sources = { - { name = 'path' } + { name = 'async_path' } } } ``` @@ -21,7 +23,7 @@ The below source configuration options are available. To set any of these option cmp.setup({ sources = { { - name = 'path', + name = 'async_path', option = { -- Options go into this table },