vim-endwise
vim-endwise copied to clipboard
Using the word 'end' in a comment in Ruby breaks auto completion
Here's a simple way to replicate the issue:
def foo
# this will not auto-close
end
def bar # this comment has the word end in it
# this will not auto-close
end
def baz
# this WILL auto-close
end