lean4-htt/src/Lean/Parser
Joachim Breitner e5d44f4033
fix: hover text over _ in ?_ (#5118)
in principle we'd like to use the existing parser
```
   "?" >> (ident <|> hole)
```
but somehow annotate it so that hovering the `hole` will not show the
hole's hover. But for now it was easier to just change the parser to
```
   "?" >> (ident <|> "_")
```
and be done with it.

Fixes #5021
2024-08-21 20:47:19 +00:00
..
Tactic feat: more infrastructure for tactic documentation (#4490) 2024-06-21 12:49:30 +00:00
Attr.lean feat: more infrastructure for tactic documentation (#4490) 2024-06-21 12:49:30 +00:00
Basic.lean feat: make frontend normalize line endings to LF (#3903) 2024-05-20 17:13:08 +00:00
Command.lean feat: omit (#5000) 2024-08-21 13:22:34 +00:00
Do.lean fix: missing atomic at match_expr parser (#3572) 2024-03-02 21:55:07 +00:00
Extension.lean feat: quotations for parser aliases (#4307) 2024-05-30 09:22:22 +00:00
Extra.lean fix: don't use info nodes before cursor for completion (#3778) 2024-04-02 08:49:24 +00:00
Level.lean perf: add prelude to all Lean modules 2024-02-18 14:55:17 -08:00
Module.lean feat: incremental elaboration of definition headers, bodies, and tactics (#3940) 2024-05-22 13:23:30 +00:00
StrInterpolation.lean perf: add prelude to all Lean modules 2024-02-18 14:55:17 -08:00
Syntax.lean perf: add prelude to all Lean modules 2024-02-18 14:55:17 -08:00
Tactic.lean feat: more infrastructure for tactic documentation (#4490) 2024-06-21 12:49:30 +00:00
Term.lean fix: hover text over _ in ?_ (#5118) 2024-08-21 20:47:19 +00:00
Types.lean chore: switch to Std.HashMap and Std.HashSet almost everywhere 2024-08-07 18:24:42 +02:00