{"id":21518257,"url":"https://github.com/baopham/vundle-cli","last_synced_at":"2025-07-04T12:34:11.734Z","repository":{"id":16920840,"uuid":"19682221","full_name":"baopham/vundle-cli","owner":"baopham","description":"A (tiny) CLI for Vim plugin manager Vundle","archived":false,"fork":false,"pushed_at":"2015-09-19T11:55:13.000Z","size":264,"stargazers_count":7,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"develop","last_synced_at":"2025-05-12T23:05:07.323Z","etag":null,"topics":["command-line","ruby","vundle"],"latest_commit_sha":null,"homepage":"https://rubygems.org/gems/vundle-cli","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/baopham.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-05-12T01:30:24.000Z","updated_at":"2017-05-16T00:04:30.000Z","dependencies_parsed_at":"2022-07-14T20:17:22.515Z","dependency_job_id":null,"html_url":"https://github.com/baopham/vundle-cli","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/baopham/vundle-cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/baopham%2Fvundle-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/baopham%2Fvundle-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/baopham%2Fvundle-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/baopham%2Fvundle-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/baopham","download_url":"https://codeload.github.com/baopham/vundle-cli/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/baopham%2Fvundle-cli/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260170783,"owners_count":22969370,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["command-line","ruby","vundle"],"created_at":"2024-11-24T00:51:05.548Z","updated_at":"2025-07-04T12:34:11.711Z","avatar_url":"https://github.com/baopham.png","language":"Ruby","readme":"# Vundle CLI [![Gem Version](https://badge.fury.io/rb/vundle-cli.svg)](http://badge.fury.io/rb/vundle-cli) [![GitHub version](https://badge.fury.io/gh/baopham%2Fvundle-cli.svg)](http://badge.fury.io/gh/baopham%2Fvundle-cli)\n\nA (tiny) CLI for Vim plugin manager [Vundle](https://github.com/gmarik/Vundle.vim)  \n\nAvailable commands:\n\n* `rm`      remove a plugin\n* `list`    list all installed plugins\n* `find`    find an installed plugin\n* `clean`   clean up unused plugin related files\n* `install` install a plugin\n\n`rm` will remove the line `Bundle plugin_name` or `Plugin plugin_name` in your `.vimrc`, \ndelete the configuration file for this plugin in the specified settings directory, \nand the plugin folder. Before anything is deleted, the command will prompt you \nfor confirmation unless the `--force` switch is on.\n\nI built this so that it's quicker to uninstall a plugin with my particular \n[vim setup](https://github.com/baopham/vim)\n\n![gif](http://baopham.github.io/images/vundlecli.gif)\n\n## Installation\n\nAdd this line to your application's Gemfile:\n\n    gem 'vundle-cli'\n\nAnd then execute:\n\n    $ vundle\n\nOr install it yourself as:\n\n    $ gem install vundle-cli\n\n## Usage\n\n  **NAME**:\n\n    vundle\n\n  **DESCRIPTION**:\n\n    A (tiny) CLI for Vim plugin manager Vundle\n\n  **COMMANDS**:\n\t\n    clean       Clean up unused plugin related files\n    find        Search for an installed plugin\n    help        Display global or [command] help documentation\n    install     Install a plugin and write to vimrc\n    list        List all installed plugins\n    rm          Remove a plugin\n\n  **GLOBAL OPTIONS**:\n\t\n    -h, --help  \n        Display help documentation\n\t\n    -v, --version  \n        Display version information\n\t\n    -t, --trace  \n        Display backtrace when an error occurs\n\n### Commands\n\n  **NAME**:\n\n    rm\n\n  **SYNOPSIS**:\n\n    vundle rm \u003cplugin\u003e [options]\n\n  **DESCRIPTION**:\n\n    Uninstall a plugin. \n    The command will remove the line ``Bundle plugin_name'' or ``Plugin plugin_name'' in your ``.vimrc'', \n    delete the configuration file for this plugin in the specified settings directory, and the plugin folder. \n    Before anything is deleted, the command will prompt you for confirmation unless the ``--force'' switch is on.\n\n  **EXAMPLES**:\n\t\n    # Remove plugin kien/ctrlp.vim\n    vundle rm kien/ctrlp.vim\n\t\n    # Or, remove any plugin that has ``ctrlp'' in its name (not recommended, it can be too ambiguous)\n    vundle rm ctrlp\n\t\n  **OPTIONS**:\n\t\n    --vimdir vimdir \n        Vim directory. Default to ~/.vim.\n\t\n    --settings settings_dir \n        Vim settings directory (where you configure your plugins). Default to ~/.vim/settings.\n\t\n    --vimrc vimrc \n        .vimrc path. Default to ~/.vimrc.\n\t\n    -f, --force \n        Force delete without confirmation. Disabled by default.\n\t\n\n\t\n\n- - -\n\n  **NAME**:\n\n    list\n\n  **SYNOPSIS**:\n\n    vundle list [options]\n\n  **DESCRIPTION**:\n\n    List all installed plugins\n\n  **EXAMPLES**:\n\t\n    # List all installed plugins\n    vundle list --vimrc ~/.vimrc\n\t\n  **OPTIONS**:\n\t\n    --vimrc vimrc \n        .vimrc path. Default to ~/.vimrc.\n\t\n\n- - -\n\n  **NAME**:\n\n    find\n\n  **SYNOPSIS**:\n\n    vundle find \u003cplugin\u003e [options]\n\n  **DESCRIPTION**:\n\n    Search for an installed plugin\n\n  **EXAMPLES**:\n\t\n    # Find a plugin that has substring ``gist''\n    vundle find gist\n\t\n  **OPTIONS**:\n\t\n    --vimrc vimrc \n        .vimrc path. Default to ~/.vimrc.\n\t\n\n- - -\n\n  **NAME**:\n\n    clean\n\n  **SYNOPSIS**:\n\n    vundle clean [plugin] [options]\n\n  **DESCRIPTION**:\n\n    Clean up unused plugin related files (such as plugin folder and config file).\n    It will prompt you for confirmation before deleting anything (unless force switch is on). \n    For option ``--all'', the command gets a list of the plugins in your bundle folder (e.g: ~/.vim/bundle) \n    and compare them with the plugins in your vimrc in order to determine which plugins need to be cleaned up.\n\n  **EXAMPLES**:\n\t\n    # Clean all unused plugins\n    vundle clean --all\n\t\n    # Clean plugin vim-signify\n    vundle clean vim-signify\n\t\n    # Clean any plugins with names that have substring ``dirty''\n    vundle clean dirty\n\t\n  **OPTIONS**:\n\t\n    --vimdir vimdir \n        Vim directory. Default to ~/.vim.\n\t\n    --settings settings_dir \n        Vim settings directory (where you configure your plugins). Default to ~/.vim/settings.\n\t\n    --vimrc vimrc \n        .vimrc path. Default to ~/.vimrc.\n\t\n    -a, --all \n        Delete everything that is not installed in your vimrc. Disabled by default.\n\t\n    -l, --list \n        List all unused plugins.\n\t\n    -f, --force \n        Force delete files without prompt. Disabled by default.\n\t\n\n- - -\n  **NAME**:\n\n    install\n\n  **SYNOPSIS**:\n\n    vundle install \u003cplugin\u003e [options]\n\n  **DESCRIPTION**:\n\n    Do NOT add quote to plugin name\n\n  **OPTIONS**:\n\n    --vimdir vimdir\n        Vim directory. Default to ~/.vim.\n\n    --vimrc vimrc\n        .vimrc path. Default to ~/.vimrc.\n\n## Contributing\n\n1. Fork it ( http://github.com/baopham/vundle-cli/fork )\n2. Create your feature branch (`git checkout -b my-new-feature`)\n3. Commit your changes (`git commit -am 'Add some feature'`)\n4. Push to the branch (`git push origin my-new-feature`)\n5. Create new Pull Request\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbaopham%2Fvundle-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbaopham%2Fvundle-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbaopham%2Fvundle-cli/lists"}