{"id":16679641,"url":"https://github.com/mrk21/neobundle-cmd","last_synced_at":"2025-07-17T01:35:18.196Z","repository":{"id":18789182,"uuid":"22002824","full_name":"mrk21/neobundle-cmd","owner":"mrk21","description":"NeoBundle command line tools.","archived":false,"fork":false,"pushed_at":"2014-07-26T03:26:10.000Z","size":324,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-19T10:15:58.556Z","etag":null,"topics":["ruby","rubygems"],"latest_commit_sha":null,"homepage":"https://rubygems.org/gems/neobundle","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"angular-ui/ui-leaflet-draw","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mrk21.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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-07-19T05:37:24.000Z","updated_at":"2017-07-20T09:45:06.000Z","dependencies_parsed_at":"2022-09-13T17:51:31.797Z","dependency_job_id":null,"html_url":"https://github.com/mrk21/neobundle-cmd","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/mrk21/neobundle-cmd","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrk21%2Fneobundle-cmd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrk21%2Fneobundle-cmd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrk21%2Fneobundle-cmd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrk21%2Fneobundle-cmd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mrk21","download_url":"https://codeload.github.com/mrk21/neobundle-cmd/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrk21%2Fneobundle-cmd/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265558723,"owners_count":23787969,"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":["ruby","rubygems"],"created_at":"2024-10-12T13:36:37.275Z","updated_at":"2025-07-17T01:35:18.181Z","avatar_url":"https://github.com/mrk21.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NeoBundle CMD\n\n[NeoBundle](https://github.com/Shougo/neobundle.vim \"Shougo/neobundle.vim\") command line tools.\n\n## Installation\n\nAdd this line to your application's Gemfile:\n\n    gem 'neobundle'\n\nAnd then execute:\n\n    $ bundle\n\nOr install it yourself as:\n\n    $ gem install neobundle\n\n## Setting\n\n1\\. Install the NeoBundle:\n\n```bash\n$ mkdir -p ~/.vim/bundle\n$ cd ~/.vim/bundle/\n$ git clone https://github.com/Shougo/neobundle.vim\n```\n\n2\\. Add the NeoBundle settings to the `~/.vimrc`:\n\n```VimL\nif has('vim_starting')\n  set runtimepath+=~/.vim/bundle/neobundle.vim\n  call neobundle#rc('~/.vim/bundle/')\nendif\n\nNeoBundle 'Shougo/vimproc.vim', {\n      \\ 'build': {\n      \\   'windows': 'make -f make_mingw32.mak',\n      \\   'cygwin': 'make -f make_cygwin.mak',\n      \\   'mac': 'make -f make_mac.mak',\n      \\   'unix': 'make -f make_unix.mak',\n      \\ },\n      \\}\n\nNeoBundle 'Shougo/neocomplete.vim'\nNeoBundle 'Shougo/vimshell.vim'\nNeoBundle 'Shougo/unite.vim'\n```\n\n## Usage\n\nThe structure of the command line is shown below:\n\n```bash\n$ neobundle [--help] [--version]\n            [--vim=\u003cpath\u003e] [--bundlefile=\u003cpath\u003e] [--verbose=\u003clevel\u003e]\n            \u003ccommand\u003e\n```\n\n### commands\n\n#### install\n\nThis command will install the Vim plugins by the NeoBundle which is described the bundle file.\nIt equals the `:NeoBundleInstall` Vim command.\n\n```bash\n$ neobundle install\n```\n\n#### clean\n\nThis command will delete the Vim plugins which is unused.\nIt equals the `:NeoBundleClean!` Vim command.\n\n```bash\n$ neobundle clean\n```\n\n#### list\n\nThis command will enumerate the Vim plugins by the NeoBundle which is described the bundle file.\nIt equals the `:NeoBundleList` Vim command.\n\n```bash\n$ neobundle list\n```\n\n### options\n\n#### --vim\n\nThis option designates the `vim` command location.\n\n```bash\n-c \u003cpath\u003e, --vim=\u003cpath\u003e\n```\n\nThe default value is `vim`, and this case is searched from the `PATH` environment variable by the system.\nAlso, this value is able to overriden by the `NEOBUNDLE_CMD_VIM` environment variable.\n\n#### --bundlefile\n\nThis option designates the bundle file location.\n\n```bash\n-f \u003cpath\u003e, --bundlefile=\u003cpath\u003e\n```\n\nThe default value is shown below:\n\n| platform | value |\n| -------- | ----- |\n| Mac OS X and Linux | $HOME/.vimrc |\n| Windows | %USERPROFILE%\\\\\\_vimrc |\n\nAlso, this value is able to overriden by the `NEOBUNDLE_CMD_BUNDLEFILE` environment variable.\n\n#### --verbose\n\nThis option is the Vim script log level. In the ordinary, do not need to use this option,\nbut for example, when wanted to trace the errors of the bundle file, this option will assist.\n\n```bash\n-V \u003clevel\u003e, --verbose=\u003clevel\u003e\n```\n\nThe default value is 0.\n\n### return value\n\nThis command return value is listed below:\n\n| value | state |\n| ----- | ----- |\n| 0 | Success |\n| 1 | Error |\n| 2 | No operation |\n\n*NOTE: The \"No operation\" return value will be returned when the command of the `install` or `clean` did nothing.*\n\n## Contributing\n\n1. Fork it ( https://github.com/mrk21/neobundle-cmd/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 a new Pull Request\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrk21%2Fneobundle-cmd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmrk21%2Fneobundle-cmd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrk21%2Fneobundle-cmd/lists"}