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

Avoid race condition while starting coqtail #366

Merged
merged 1 commit into from
Aug 23, 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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
## Unreleased ([main])

### Fixed
- Avoid a race condition when calling commands before Coqtail is fully initialized.
(PR #366)
- A deadlock in NeoVim when executing certain commands before `:CoqStart`.
(PR #361)

Expand Down
2 changes: 2 additions & 0 deletions autoload/coqtail.vim
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,8 @@ endfunction
function! coqtail#start(after_start_cmd, coq_args) abort
if s:running()
call coqtail#util#warn('Coq is already running.')
elseif s:initted()
call coqtail#util#warn('Coq is still starting.')
else
" See comment in coqtail#init() about buffer-local variables
" Hack: buffer-local variable as we cannot easily pass this to
Expand Down
Loading