File tree 1 file changed +1
-23
lines changed
1 file changed +1
-23
lines changed Original file line number Diff line number Diff line change 7
7
8
8
--- @param opts ? LazyFloatOptions
9
9
function M .float (opts )
10
- opts = opts or {}
11
- local cursor
12
- local View = require (" lazy.view" )
13
- if View .visible () then
14
- -- set cursor to the top of the ui, so the tabs are visible
15
- cursor = vim .api .nvim_win_get_cursor (View .view .win )
16
- vim .api .nvim_win_set_cursor (View .view .win , { 1 , 0 })
17
- opts = vim .tbl_deep_extend (" force" , {
18
- zindex = 60 ,
19
- border = " none" ,
20
- margin = { top = 3 , left = 2 , right = 2 },
21
- }, opts )
22
- end
23
- local ret = require (" lazy.view.float" )(opts )
24
- -- restore the cursor
25
- if cursor then
26
- ret :on (" BufLeave" , function ()
27
- if View .visible () then
28
- vim .api .nvim_win_set_cursor (View .view .win , cursor )
29
- end
30
- end , { once = true })
31
- end
32
- return ret
10
+ return require (" lazy.view.float" )(opts )
33
11
end
34
12
35
13
function M .open (uri )
You can’t perform that action at this time.
0 commit comments