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

[config] set goal_after_tactic default to true #615

Merged
merged 1 commit into from
Nov 21, 2023
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 CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@
- [plugins] New `astdump` plugin to dump AST of files into JSON and
SEXP (@ejgallego, #607)
- errors on save where not properly caught (@ejgallego, #608)
- switch default of `goal_after_tactic` to `true` (@Alizter,
@ejgallego, cc: #614)

# coq-lsp 0.1.8: Trick-or-treat
-------------------------------
Expand Down
2 changes: 1 addition & 1 deletion fleche/config.ml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ type t =
; client_version : string [@default "any"]
; eager_diagnostics : bool [@default true]
(** [eager_diagnostics] Send (full) diagnostics after processing each *)
; goal_after_tactic : bool [@default false]
; goal_after_tactic : bool [@default true]
(** When showing goals and the cursor is in a tactic, if false, show
goals before executing the tactic, if true, show goals after *)
; show_coq_info_messages : bool [@default false]
Expand Down
Loading