Skip to content

Commit 1f1736c

Browse files
committed
Update README.md
1 parent ed3e24d commit 1f1736c

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,18 +68,19 @@ After installation, you can use the picker with:
6868
```
6969
You can also add parameters
7070
```vim
71-
:Telescope clapi show_inherited=false
71+
:Telescope clapi show_inherited=false visibility=public
7272
```
7373

7474
Or in Lua:
7575

7676
```lua
7777
-- Call the builtin directly
7878
:lua require('clapi').builtin()
79-
:lua require('clapi').builtin({show_inherited = false}) -- You can also pass options to filter the results
79+
:lua require('clapi').builtin({show_inherited = false, visibility = 'public'}) -- You can pass options to filter the results
8080

8181
-- Call the extension instead. This option will use your default configurations from the telescope config
8282
:lua require('telescope').extensions.clapi.clapi()
83+
:lua require('telescope').extensions.clapi.clapi({show_inherited = false, visibility = 'public'}) -- You can also use parameters this way
8384
```
8485
## Configuration Options
8586

0 commit comments

Comments
 (0)