juliosueiras / vim-terraform-completion

A (Neo)Vim Autocompletion and linter for Terraform, a HashiCorp tool
MIT License
337 stars 24 forks source link

Fix ctags regex #25

Closed davewongillies closed 7 years ago

davewongillies commented 7 years ago

What?

Change the ctags regex from \s to [[:space:]].

Why?

When using exuberant ctags version 5.8 on macosx (from homebrew), \s doesn't find any tags but changing it to [[:space:]] does. Also tested against exuberant ctags 5.9 on Ubuntu Xenial 16.04 and it works to (fwiw, I use [[:space:]] in my personal ctags too for other things instead of \s).