isovector / cornelis

agda-mode for neovim
BSD 3-Clause "New" or "Revised" License
130 stars 22 forks source link

removed some duplicates #140

Closed silky closed 7 months ago

silky commented 7 months ago

Fixes #139

You can check for duplicates like so:

cat agda-input.vim | grep 'call' | sed 's/^.*(//' | sed 's/",.*$/"/' | uniq -D

I just deleted the first of all the mappings (as that one was never used anyway); but feel free to suggest changes and I can make them.

isovector commented 7 months ago

Thanks so much!