Skip to content

Commit 00faa2c

Browse files
authored
Update vital module (#493)
1 parent 56f8e4c commit 00faa2c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

autoload/vital/_fern/Vim/Window/Cursor.vim

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ if !exists('*nvim_win_get_cursor')
1515
else
1616
let winid_saved = win_getid()
1717
try
18-
call win_gotoid(a:winid)
18+
noautocmd call win_gotoid(a:winid)
1919
return s:get_cursor(a:winid)
2020
finally
21-
call win_gotoid(winid_saved)
21+
noautocmd call win_gotoid(winid_saved)
2222
endtry
2323
endif
2424
endfunction
@@ -36,10 +36,10 @@ if !exists('*nvim_win_set_cursor')
3636
else
3737
let winid_saved = win_getid()
3838
try
39-
call win_gotoid(a:winid)
39+
noautocmd call win_gotoid(a:winid)
4040
call s:set_cursor(a:winid, a:pos)
4141
finally
42-
call win_gotoid(winid_saved)
42+
noautocmd call win_gotoid(winid_saved)
4343
endtry
4444
endif
4545
endfunction

autoload/vital/fern.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ endfunction
218218
" @vimlint(EVL102, 0, l:__)
219219
" @vimlint(EVL102, 0, l:_)
220220

221-
" s:_get_module() returns module object wihch has all script local functions.
221+
" s:_get_module() returns module object which has all script local functions.
222222
function! s:_get_module(name) abort dict
223223
let funcname = s:_import_func_name(self.plugin_name(), a:name)
224224
try

autoload/vital/fern.vital

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
fern
2-
7fa44ef166bd9bb9ab6d2f9c3ec86c7b1d6b13ba
2+
809b434305276dd3caf8094334dfa2d27d6fd6a6
33

44
App.Spinner
55
Async.CancellationTokenSource

0 commit comments

Comments
 (0)