Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update vital module #493

Merged
merged 1 commit into from
Mar 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading