diff options
author | Saad Parwaiz <saad.parwaiz1@gmail.com> | 2021-03-03 01:55:43 +0000 |
---|---|---|
committer | Saad Parwaiz <saad.parwaiz1@gmail.com> | 2021-03-03 01:55:43 +0000 |
commit | 6cfd5d7163eff7faf90ea3dc00cc6be7709aada3 (patch) | |
tree | 6f89aebf47b631bdc3f777076c946662d5ddfb5a | |
parent | af0a9da97566f5567c339a278bd620ac32dc2485 (diff) | |
download | rneovim-6cfd5d7163eff7faf90ea3dc00cc6be7709aada3.tar.gz rneovim-6cfd5d7163eff7faf90ea3dc00cc6be7709aada3.tar.bz2 rneovim-6cfd5d7163eff7faf90ea3dc00cc6be7709aada3.zip |
runtime/haskell: 8fe1000e9c3438d0ff36cf2340f0f0e48f8fb89f
port haskellcomplete file only
-rw-r--r-- | runtime/autoload/haskellcomplete.vim | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/runtime/autoload/haskellcomplete.vim b/runtime/autoload/haskellcomplete.vim index 520ab93700..48fbac7f9f 100644 --- a/runtime/autoload/haskellcomplete.vim +++ b/runtime/autoload/haskellcomplete.vim @@ -2,7 +2,7 @@ " Language: Haskell " Maintainer: Daniel Campoverde <alx@sillybytes.net> " URL: https://github.com/alx741/haskellcomplete.vim -" Last Change: 2018 Aug 26 +" Last Change: 2019 May 14 " Usage: setlocal omnifunc=haskellcomplete#Complete @@ -63,6 +63,7 @@ function! haskellcomplete#Complete(findstart, base) call add(l:matches, extension) endif endfor + let b:completingLangExtension = 0 return l:matches endif @@ -78,6 +79,7 @@ function! haskellcomplete#Complete(findstart, base) call add(l:matches, flag) endif endfor + let b:completingOptionsGHC = 0 return l:matches endif @@ -93,6 +95,7 @@ function! haskellcomplete#Complete(findstart, base) call add(l:matches, module) endif endfor + let b:completingModule = 0 return l:matches endif |