File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -113,17 +113,17 @@ require('telescope').setup({
113
113
For a particular command you can pass it directly in your key mapping to the function:
114
114
115
115
``` lua
116
- require (' telescope' ).extension .orgmode .search_headings ({ max_depth = 3 })
116
+ require (' telescope' ).extensions .orgmode .search_headings ({ max_depth = 3 })
117
117
```
118
118
119
119
You can also create a key mapping, that allows you to search directly for org files:
120
120
121
121
``` lua
122
122
vim .set .keymap (
123
123
" n" ,
124
- " <Leader>off" ,
124
+ " <Leader>off" ,
125
125
function ()
126
- require (' telescope' ).extension .orgmode .search_headings ({ mode = " orgfiles" })
126
+ require (' telescope' ).extensions .orgmode .search_headings ({ mode = " orgfiles" })
127
127
end ,
128
128
{ desc = " Find org files" }
129
129
)
You can’t perform that action at this time.
0 commit comments