3

I tried bash shell auto-complete.

As information, I created ~/.vim/plugin and copied acp.vim file.

But this message L9 library must be installed occurred.

How can I solve this problem? thanks.

Below is the vim version and acp.vim.

  • vim --version : 7.4
  • acp.vim

    "===========================================================================    ==
    " Copyright (c) 2007-2009 Takeshi NISHIDA
    "     
    " GetLatestVimScripts: 1879 1 :AutoInstall: AutoComplPop
    "===========================================================================    == 
    " LOAD GUARD {{{1
    
    try
      if !l9#guardScriptLoading(expand('<sfile>:p'), 702, 101, [])
        finish      
      endif
    catch /E117/      
      echoerr '***** L9 library must be installed! *****'
      finish
    endtry
    
    " }}}1 
    "===========================================================================    == 
    " FUNCTION: {{{1 
    
romainl
  • 186,200
  • 21
  • 280
  • 313
volt772
  • 93
  • 1
  • 6

1 Answers1

2

You also need to install the L9 library from the same author. This is indeed hardly documented. Note that AutoComplPop isn't actively maintained any more (but it still works fine).

Ingo Karkat
  • 167,457
  • 16
  • 250
  • 324