juliosueiras / vim-terraform-completion

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

Deoplete - modifying source inside a module is blocking #47

Open SevereOverfl0w opened 5 years ago

SevereOverfl0w commented 5 years ago

To reproduce

  1. Enable deoplete as described in readme
  2. copy this into a .tf file:
module "xyz" {
  source = ""
}
  1. Move cursor inside of "", and start typing, after the first character vim locks up for a few seconds

Typing special characters, e.g. . seems to cause the next characters to freeze again. This is problematic for URLs and paths.

juliosueiras commented 5 years ago

can you try it with let g:terraform_module_registry_search = 0 in your init.vim?

SevereOverfl0w commented 5 years ago

That did not seem to help.