idris-vim icon indicating copy to clipboard operation
idris-vim copied to clipboard

<LocalLeader>d handles parenthesis incorrectly

Open SuprDewd opened this issue 9 years ago • 0 comments

I had something like the following (hypothetical) code snippet:

(++) : Nat -> Nat -> Nat

Then, while hovering over the left parethesis, I hit <LocalLeader>d and got the following:

(++) : Nat -> Nat -> Nat
       Nat k j = ?Nat_rhs

Obviously I was expecting something like:

(++) : Nat -> Nat -> Nat
(++) k j = ?something_rhs

SuprDewd avatar Jan 11 '17 14:01 SuprDewd