Add debug buffer, fix a bug#70
Open
WangNan0 wants to merge 3 commits intothe-lambda-church:pathogen-bundlefrom
Open
Add debug buffer, fix a bug#70WangNan0 wants to merge 3 commits intothe-lambda-church:pathogen-bundlefrom
WangNan0 wants to merge 3 commits intothe-lambda-church:pathogen-bundlefrom
Conversation
Usage: :call coquille#DebugOn() :CoqLaunch Will open a new buffer named "Debug". Message to/from coqtop will be shown there. Signed-off-by: Wang Nan <wangnan0@huawei.com>
Message can be reported this way: <message> <message_level val="info"/> <string>mypred_Sx is defined</string> </message> When recving message like this, python raise an exception in get_answer() because accessing 'c[2]' is invalid in this case. We should look for the exact node instead. Signed-off-by: Wang Nan <wangnan0@huawei.com>
b67f978 to
6d5ef3d
Compare
When coqtop response an error, try to extract 'msg' field from response, cause an exception. Before parsing goals, check if response is Err. Signed-off-by: Wang Nan <wangnan0@huawei.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Python raise an exception when dealing 'Qed.' in coq8.5. This patch fix it.
A debug facility is added to help people check the communication between vim and coqtop. See commit message for usage.