Rayson Zhu
6813e55fb4
refine Chinese (Traditional) translations
9 years ago
Ryan L McIntyre
88688fe453
Merge pull request #751 from VincentTam/README_ZH_TW
Fixes a typo corresponding to f4cea90
9 years ago
Caleb Eby
9078aafe02
Use github markdown checkmarks ( #749 )
* Updates readme to use github markdown checkmarks
9 years ago
Vincent Tam
92ea40f3a8
A change corresponding to f4cea90
A traditional Chinese version of the updated `README_ZH_CN.md`.
9 years ago
Ryan L McIntyre
fef1c2f318
Merge pull request #746 from archersmind/patch-1
Update README_ZH_CN.md
9 years ago
Alan
f4cea9031e
Update README_ZH_CN.md
Fix typo
10 years ago
Ryan L McIntyre
4984767509
Merge pull request #698 from VincentTam/README_ZH_TW
Updates traditional Chinese readme translation per English readme update (corresponding to 52f3443 )
10 years ago
Vincent Tam
cc25a06266
A change corresponding to 52f3443
A traditional Chinese version of the updated `README_ZH_CN.md`.
10 years ago
Ryan L McIntyre
50cd52f2ad
Merge pull request #697 from VincentTam/README_ZH_TW
Removes BOM and CR
10 years ago
Ryan L McIntyre
775d94dee9
Merge pull request #692 from wsdjeg/master
Updates example in readme to better explain the 'name' option
10 years ago
Vincent Tam
6a3469c4ca
Removed BOM and CR
They are added by Notepad on M$ Windows.
10 years ago
Ryan L McIntyre
8a054139a3
Merge pull request #696 from VincentTam/README_ZH_TW
Adds traditional Chinese version of README_ZH_TW.md
10 years ago
Vincent Tam
96bb8e5cc5
Corrected a missing word
10 years ago
Vincent Tam
a30caf734a
A traditional Chinese version of the README
This is done based on the simplified Chinese version at commit 232cb92 .
Traditional Chinese is used by people in Taiwan, Hong Kong and Macao.
10 years ago
wsdjeg
52f3443101
Update example in readme
10 years ago
gmarik
5f70ae6025
Merge pull request #659 from nfischer/SilentMappings
Setting Vundle key mappings to be silent
10 years ago
gmarik
f095d2b398
Merge pull request #633 from chiphogg/highlight_updates
Add 'vundlelog' filetype + settings/highlighting
10 years ago
Nate Fischer
b2d0e5b162
Setting Vundle key mappings to be silent.
10 years ago
gmarik
3a359942d6
Merge pull request #657 from wsdjeg/master
i have added an readme_zh_cn.md in to this repo!
10 years ago
wsdjeg
232cb92717
finished readme
10 years ago
wsdjeg
b421bce931
readme_zh_ch
10 years ago
wsdjeg
670efe2dbb
readme_zh_ch
10 years ago
Chip Hogg
0d330dbeed
Add 'vundlelog' filetype + settings/highlighting
11 years ago
gmarik
9723e59e6e
Merge pull request #651 from nfischer/URLs
Repository references to VundleVim instead of gmarik
10 years ago
Nate Fischer
11fdc428fe
Update repository references throughout documentation. Also, fixed an
incorrect URL and updated references to ':Bundle' commands to ':Plugin'
commands
10 years ago
gmarik
05be0a50f4
Merge pull request #621 from nfischer/master
Fixing 'modifiable', 'bufhidden', and other small buffer properties for Vundle buffers
10 years ago
Nate Fischer
fb9dff181e
Vundle log, changelog, and scripts-view are no longer modifiable and the
buffers will not persist after they're closed.
11 years ago
Niklas Silfverström
0ee36b26e1
Merge pull request #628 from dleve123/update-readme-to-reflect-new-repo
Update repository references in README
11 years ago
Daniel Levenson
1ae7e9138c
Update repository references.
Saves a 301 redirect and removes a tad bit of confusion when `git
clone`-ing Vundle when installing.
11 years ago
Jacobo de Vera
cfd3b2d388
Merge pull request #578 from av3r4ge/plugin-names-security-enhancement
Prevent insecure plugin names.
11 years ago
Shahaf Arad
2506347586
Prevent insecure plugin names.
Plugins' names which contain '../', '$HOME', '% h', '..\', etc.
can be dangerous.
Use a sensible whitelist for plugin names and prevent its expansion.
11 years ago
Jacobo de Vera
34a307786b
Merge pull request #450 from lucc/autoload-vars
Refactor global variables to autoload variables
11 years ago
Lucas Hoffmann
16237bbb73
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).
11 years ago
Lucas Hoffmann
356f245fbe
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
11 years ago
Lucas Hoffmann
5f27abb958
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.
11 years ago
Lucas Hoffmann
088295df77
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
11 years ago
Lucas Hoffmann
cad5f50a64
Remove unneeded variable setting.
The variable is script local to autoload/vundle/scripts.vim since #468 .
11 years ago
Lucas Hoffmann
7d9b10874e
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.
12 years ago
Jacobo de Vera
c4d68bcf7c
Merge pull request #514 from PeterDaveHello/patch-1
Use svg instead of png to get better image quality
11 years ago
Jacobo de Vera
a39790b5e7
Merge pull request #508 from sukima/patch-1
Update minirc to Plugin* commands with #begin and #end
11 years ago
Jacobo de Vera
92a66df592
Complete installed plugins also for VundleUpdate
11 years ago
Shahaf Arad
1df432aecf
Allow updating specific plugins.
11 years ago
Jacobo de Vera
a864467285
Add explicit note for Fish users to check the FAQ
11 years ago
Peter Dave Hello
55db8cc492
Use svg instead of png to get better image quality
11 years ago
Devin Weaver
dbc36fcaae
Update minirc to Plugin namespace
11 years ago
gmarik
0b28e334e6
Merge pull request #496 from gmarik/clarify-readme
Clarify Readme.
12 years ago
gmarik
1953dcd2ee
Clarify Readme.
- closes #281
12 years ago
Andrea Cedraro
8db3bcb592
Change reference of `Bundle` to `Plugin` in the docs
12 years ago
Jacobo de Vera
c46dc75e3c
Correct new version in changelog.md
12 years ago
Jacobo de Vera
40e23f79f1
Bump version to 0.10.2
12 years ago