Commit Graph

610 Commits

Author SHA1 Message Date
Ryan L McIntyre
f6cc06238d Merge pull request #775 from vfreex/refine-zh-tw
refine Chinese (Traditional) translations
2017-02-24 17:07:10 -05:00
Rayson Zhu
6813e55fb4 refine Chinese (Traditional) translations 2016-12-08 14:30:50 +08:00
Ryan L McIntyre
88688fe453 Merge pull request #751 from VincentTam/README_ZH_TW
Fixes a typo corresponding to f4cea90
2016-10-22 10:02:55 -04:00
Caleb Eby
9078aafe02 Use github markdown checkmarks (#749)
* Updates readme to use github markdown checkmarks
2016-10-20 23:10:49 -04:00
Vincent Tam
92ea40f3a8 A change corresponding to f4cea90
A traditional Chinese version of the updated `README_ZH_CN.md`.
2016-08-21 20:42:36 +08:00
Ryan L McIntyre
fef1c2f318 Merge pull request #746 from archersmind/patch-1
Update README_ZH_CN.md
2016-08-05 06:17:18 -04:00
Alan
f4cea9031e Update README_ZH_CN.md
Fix typo
2016-07-31 13:53:08 +08:00
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)
2016-02-26 10:02:34 -05:00
Vincent Tam
cc25a06266 A change corresponding to 52f3443
A traditional Chinese version of the updated `README_ZH_CN.md`.
2016-02-26 20:41:02 +08:00
Ryan L McIntyre
50cd52f2ad Merge pull request #697 from VincentTam/README_ZH_TW
Removes BOM and CR
2016-02-25 11:37:43 -05:00
Ryan L McIntyre
775d94dee9 Merge pull request #692 from wsdjeg/master
Updates example in readme to better explain the 'name' option
2016-02-25 11:25:32 -05:00
Vincent Tam
6a3469c4ca Removed BOM and CR
They are added by Notepad on M$ Windows.
2016-02-23 00:42:51 +08:00
Ryan L McIntyre
8a054139a3 Merge pull request #696 from VincentTam/README_ZH_TW
Adds traditional Chinese version of README_ZH_TW.md
2016-02-21 21:20:06 -05:00
Vincent Tam
96bb8e5cc5 Corrected a missing word 2016-02-21 20:54:42 +08:00
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.
2016-02-21 20:50:37 +08:00
wsdjeg
52f3443101 Update example in readme 2016-01-30 09:24:05 +08:00
gmarik
5f70ae6025 Merge pull request #659 from nfischer/SilentMappings
Setting Vundle key mappings to be silent
2015-11-04 21:55:02 -05:00
gmarik
f095d2b398 Merge pull request #633 from chiphogg/highlight_updates
Add 'vundlelog' filetype + settings/highlighting
2015-11-04 21:32:15 -05:00
Nate Fischer
b2d0e5b162 Setting Vundle key mappings to be silent. 2015-11-02 19:08:34 -08:00
gmarik
3a359942d6 Merge pull request #657 from wsdjeg/master
i have added an readme_zh_cn.md in to this repo!
2015-10-29 19:44:19 -04:00
wsdjeg
232cb92717 finished readme 2015-10-27 19:29:26 +08:00
wsdjeg
b421bce931 readme_zh_ch 2015-10-26 18:29:07 +08:00
wsdjeg
670efe2dbb readme_zh_ch 2015-10-26 16:59:56 +08:00
Chip Hogg
0d330dbeed Add 'vundlelog' filetype + settings/highlighting 2015-10-25 09:39:18 -04:00
gmarik
9723e59e6e Merge pull request #651 from nfischer/URLs
Repository references to VundleVim instead of gmarik
2015-10-23 13:51:01 -04:00
Nate Fischer
11fdc428fe Update repository references throughout documentation. Also, fixed an
incorrect URL and updated references to ':Bundle' commands to ':Plugin'
commands
2015-10-23 10:43:15 -07:00
gmarik
05be0a50f4 Merge pull request #621 from nfischer/master
Fixing 'modifiable', 'bufhidden', and other small buffer properties for Vundle buffers
2015-10-23 13:34:14 -04:00
Nate Fischer
fb9dff181e Vundle log, changelog, and scripts-view are no longer modifiable and the
buffers will not persist after they're closed.
2015-08-20 23:20:09 -07:00
Niklas Silfverström
0ee36b26e1 Merge pull request #628 from dleve123/update-readme-to-reflect-new-repo
Update repository references in README
2015-08-10 10:51:12 +02:00
Daniel Levenson
1ae7e9138c Update repository references.
Saves a 301 redirect and removes a tad bit of confusion when `git
clone`-ing Vundle when installing.
2015-07-26 14:57:40 -04:00
Jacobo de Vera
cfd3b2d388 Merge pull request #578 from av3r4ge/plugin-names-security-enhancement
Prevent insecure plugin names.
2015-03-21 23:51:26 +01:00
Shahaf Arad
2506347586 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.
2015-03-22 00:38:52 +02:00
Jacobo de Vera
34a307786b Merge pull request #450 from lucc/autoload-vars
Refactor global variables to autoload variables
2015-03-21 23:17:37 +01:00
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).
2015-03-04 13:12:20 +01:00
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
2015-03-04 13:12:20 +01:00
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.
2015-03-04 13:05:14 +01:00
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
2015-03-03 10:50:28 +01:00
Lucas Hoffmann
cad5f50a64 Remove unneeded variable setting.
The variable is script local to autoload/vundle/scripts.vim since #468.
2015-03-03 10:40:30 +01:00
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.
2015-03-03 02:06:24 +01:00
Jacobo de Vera
c4d68bcf7c Merge pull request #514 from PeterDaveHello/patch-1
Use svg instead of png to get better image quality
2015-03-02 22:26:46 +01:00
Jacobo de Vera
a39790b5e7 Merge pull request #508 from sukima/patch-1
Update minirc to Plugin* commands with #begin and #end
2015-03-02 22:23:05 +01:00
Jacobo de Vera
92a66df592 Complete installed plugins also for VundleUpdate 2015-03-02 22:04:02 +01:00
Shahaf Arad
1df432aecf Allow updating specific plugins. 2015-03-02 22:04:02 +01:00
Jacobo de Vera
a864467285 Add explicit note for Fish users to check the FAQ 2015-02-20 07:01:53 +01:00
Peter Dave Hello
55db8cc492 Use svg instead of png to get better image quality 2014-09-08 15:45:39 +08:00
Devin Weaver
dbc36fcaae Update minirc to Plugin namespace 2014-08-26 11:00:55 -04:00
gmarik
0b28e334e6 Merge pull request #496 from gmarik/clarify-readme
Clarify Readme.
2014-07-18 18:35:02 -04:00
gmarik
1953dcd2ee Clarify Readme.
- closes #281
2014-07-18 18:33:37 -04:00
Andrea Cedraro
8db3bcb592 Change reference of Bundle to Plugin in the docs 2014-04-28 17:52:55 +02:00
Jacobo de Vera
c46dc75e3c Correct new version in changelog.md 2014-04-28 17:49:47 +02:00