Skip to content

Commit

Permalink
Update vital module
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdalisue committed Feb 3, 2024
1 parent 56f8e4c commit 0aa90f7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions autoload/vital/_fern/Vim/Window/Cursor.vim
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ if !exists('*nvim_win_get_cursor')
else
let winid_saved = win_getid()
try
call win_gotoid(a:winid)
noautocmd call win_gotoid(a:winid)
return s:get_cursor(a:winid)
finally
call win_gotoid(winid_saved)
noautocmd call win_gotoid(winid_saved)
endtry
endif
endfunction
Expand All @@ -36,10 +36,10 @@ if !exists('*nvim_win_set_cursor')
else
let winid_saved = win_getid()
try
call win_gotoid(a:winid)
noautocmd call win_gotoid(a:winid)
call s:set_cursor(a:winid, a:pos)
finally
call win_gotoid(winid_saved)
noautocmd call win_gotoid(winid_saved)
endtry
endif
endfunction
Expand Down
2 changes: 1 addition & 1 deletion autoload/vital/fern.vim
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ endfunction
" @vimlint(EVL102, 0, l:__)
" @vimlint(EVL102, 0, l:_)

" s:_get_module() returns module object wihch has all script local functions.
" s:_get_module() returns module object which has all script local functions.
function! s:_get_module(name) abort dict
let funcname = s:_import_func_name(self.plugin_name(), a:name)
try
Expand Down
2 changes: 1 addition & 1 deletion autoload/vital/fern.vital
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
fern
7fa44ef166bd9bb9ab6d2f9c3ec86c7b1d6b13ba
809b434305276dd3caf8094334dfa2d27d6fd6a6

App.Spinner
Async.CancellationTokenSource
Expand Down

0 comments on commit 0aa90f7

Please sign in to comment.