How to install a Vimball plugin (with .vba extension)?

27,146

Open the vba file with vim, and type the :source % command right there. The % refers to the current file, so using :source % while having a file open in vim is telling it to run the file in the context of vim, which in the case of vba files, is installing it in the proper directories.

Share:
27,146
alexchenco
Author by

alexchenco

Programmer from Taiwan

Updated on July 08, 2022

Comments

  • alexchenco
    alexchenco almost 2 years

    How to install a Vimball plugin (with .vba extension)?

    The documentation just says:

    install details Edit the vba file and type:

    :so %
    

    The vimball documentation says:

    All a user needs to do with a vimball is:

    vim someplugin.vba
    :so %
    :q
    
    • Do I have to write that in normal mode (inside Vim) or in the _vimrc file?
    • Do I have to write the full path of the .vba file?
    • I can't write vim someplugin in normal mode. Do I have to write :vim plugin?
  • Naveen
    Naveen almost 11 years
    Shorter syntax :so %
  • go2null
    go2null over 8 years
    Here's the 'official' doc: vim.org/scripts/script.php?script_id=1502 on source *.vba
  • Steven Lu
    Steven Lu over 3 years
    I wonder if there is a way to plug-ify this so that I can perhaps point my vim at a URL that hosts the Vimball file. Because without that, once I go to another machine, this plugin will be missing, no? I googled, and found this: vi.stackexchange.com/a/24832/390