@@ -97,8 +97,6 @@ When the picker opens, you can:
9797The clapi picker accepts the following options:
9898
9999 - `bufnr ` : Buffer number (defaults to current buffer)
100- - `path_display` : How to display paths
101- - `entry_maker` : Custom entry maker function
102100 - `show_inherited` : Whether to show inherited members from parent classes,
103101 traits, and interfaces (defaults to true)
104102 - `visibility` : Filter members by visibility: "public", "protected", "private",
@@ -132,8 +130,6 @@ Opens the telescope picker with module interface.
132130Parameters:
133131 - `opts` (table, optional): Configuration options
134132 - `bufnr ` (number, optional): Buffer number, defaults to current buffer (0)
135- - `path_display` (table|string, optional): How to display paths
136- - `entry_maker` (function, optional): Custom entry maker function
137133 - `show_inherited` (boolean, optional): Show inherited members from parent classes,
138134 traits, and interfaces. Defaults to true. Set to false to only show members
139135 defined in the current class.
@@ -161,7 +157,6 @@ Basic usage: >lua
161157Advanced usage with custom options: >lua
162158 -- Open the API picker with specific options
163159 require('clapi' ).builtin({
164- path_display = { "smart" },
165160 show_inherited = false, -- Only show members defined in the current class
166161 visibility = "public" -- Only show public members
167162 })
0 commit comments