Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add command to explore bundle dir #467

Open
wants to merge 19 commits into
base: next
Choose a base branch
from
Open

add command to explore bundle dir #467

wants to merge 19 commits into from

Commits on Jul 18, 2014

  1. Clarify Readme.

    - closes #281
    gmarik committed Jul 18, 2014
    Configuration menu
    Copy the full SHA
    1953dcd View commit details
    Browse the repository at this point in the history
  2. Merge pull request #496 from gmarik/clarify-readme

    Clarify Readme.
    gmarik committed Jul 18, 2014
    Configuration menu
    Copy the full SHA
    0b28e33 View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2014

  1. Configuration menu
    Copy the full SHA
    dbc36fc View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2014

  1. Configuration menu
    Copy the full SHA
    55db8cc View commit details
    Browse the repository at this point in the history

Commits on Feb 20, 2015

  1. Configuration menu
    Copy the full SHA
    a864467 View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2015

  1. Allow updating specific plugins.

    Shahaf Arad authored and jdevera committed Mar 2, 2015
    Configuration menu
    Copy the full SHA
    1df432a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    92a66df View commit details
    Browse the repository at this point in the history
  3. Merge pull request #508 from sukima/patch-1

    Update minirc to Plugin* commands with #begin and #end
    jdevera committed Mar 2, 2015
    Configuration menu
    Copy the full SHA
    a39790b View commit details
    Browse the repository at this point in the history
  4. Merge pull request #514 from PeterDaveHello/patch-1

    Use svg instead of png to get better image quality
    jdevera committed Mar 2, 2015
    Configuration menu
    Copy the full SHA
    c4d68bc View commit details
    Browse the repository at this point in the history

Commits on Mar 3, 2015

  1. Allow multiple calls to VundleChangelog.

    The command `silent pedit ...` was causing trouble if the user had `set
    hidden`.  Now we `bdelete` the changelog buffer before editing it anew.
    lucc committed Mar 3, 2015
    Configuration menu
    Copy the full SHA
    7d9b108 View commit details
    Browse the repository at this point in the history
  2. Remove unneeded variable setting.

    The variable is script local to autoload/vundle/scripts.vim since #468.
    lucc committed Mar 3, 2015
    Configuration menu
    Copy the full SHA
    cad5f50 View commit details
    Browse the repository at this point in the history
  3. Refactor global variables into script local variables.

    These variables only occur in one file each.  By making them script local
    variables this is "documented" in the code.  At the same time the global
    namespace is polluted less.
    
    Changed:
        g:bundle_names          -> s:bundle_names
        g:vundle_last_status    -> s:last_status
        g:vundle_log_file       -> s:log_file
        g:vundle_view           -> s:view
    lucc committed Mar 3, 2015
    Configuration menu
    Copy the full SHA
    088295d View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2015

  1. Allow multiple calls to VundleLog.

    If it was loaded, unload the log buffer before editing it.  Otherwise the
    editing command can "hang" if the user has `set hidden`.
    
    This problem was originally discovered with the VundleChangelog command and
    the analogous fix was applied in 7d9b10.  See github issue #468 for more.
    lucc committed Mar 4, 2015
    Configuration menu
    Copy the full SHA
    5f27abb View commit details
    Browse the repository at this point in the history
  2. Refactor global variables into autoload variables.

    All global variables that are not part of the public API (mentioned in the
    documentation) are turned into autoload variables.  This is intended to give
    all global variables defined by Vundle.vim a common prefix.  The variable
    g:default_git_proto is part of the public API and is therefor not changed.
    This is the only exception.
    
    Changed:
       g:bundle_dir            -> vundle#bundle_dir
       g:bundles               -> vundle#bundles
       g:updated_bundles       -> vundle#updated_bundles
       g:vundle_lazy_load      -> vundle#lazy_load
       g:vundle_log            -> vundle#log
    Unchanged:
       g:default_git_proto
    lucc committed Mar 4, 2015
    Configuration menu
    Copy the full SHA
    356f245 View commit details
    Browse the repository at this point in the history
  3. Set default values for autoload variables.

    The setting of the default values for the autoload variables is moved out of
    any function.  One reason being that these settings do not depend on the
    argument of the function.  The second being that Vim will source the autoload
    script if an undefined autoload variable is referenced and the file is
    expected to define the variable (see :help autoload).
    lucc committed Mar 4, 2015
    Configuration menu
    Copy the full SHA
    16237bb View commit details
    Browse the repository at this point in the history

Commits on Mar 21, 2015

  1. Merge pull request #450 from lucc/autoload-vars

    Refactor global variables to autoload variables
    jdevera committed Mar 21, 2015
    Configuration menu
    Copy the full SHA
    34a3077 View commit details
    Browse the repository at this point in the history
  2. Prevent insecure plugin names.

    Plugins' names which contain '../', '$HOME', '%:h:h', '..\', etc.
    can be dangerous.
    Use a sensible whitelist for plugin names and prevent its expansion.
    Shahaf Arad committed Mar 21, 2015
    Configuration menu
    Copy the full SHA
    2506347 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #578 from av3r4ge/plugin-names-security-enhancement

    Prevent insecure plugin names.
    jdevera committed Mar 21, 2015
    Configuration menu
    Copy the full SHA
    cfd3b2d View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2015

  1. Configuration menu
    Copy the full SHA
    8b670ee View commit details
    Browse the repository at this point in the history