Skip to content

Tags: maxbcode/vim-plug

Tags

0.5.6

Toggle 0.5.6's commit message
0.5.6

- Added `g:plug_window` (junegunn#57)
- Changed URL for `PlugUpgrade` (junegunn#58)
- Added `g:plug_url_format` (junegunn#62)
- Fixed PlugDiff with git config `pull.rebase=true` (junegunn#64)
- Fixed commit review of `PlugDiff` when directory changed on BufEnter/BufLeave (junegunn#65)
- Changed not to print message after PlugUpdate when there was no updated (junegunn#66)

0.5.5

Toggle 0.5.5's commit message
0.5.5

- Use `git::` prefix to avoid password prompt on git 1.7 (junegunn#56)
- Allow Plug command even when git executable is not found (junegunn#52)

0.5.4

Toggle 0.5.4's commit message
0.5.4

- Added plug#helptags()
- Added plug#load(name...)
- Updated `:PlugStatus` to show which plugins are not yet loaded
    - You load them with `L` key (visual range allowed)
- Updated `:PlugDiff` to allow reverting the update with `X` key

0.5.3

Toggle 0.5.3's commit message
0.5.3

- Added `-bar` option to the commands so that they can be written one line
  with BARs. e.g. `PlugClean! | PlugInstall`
- Fixed `PlugUpgrade` so that a restart (or reload of .vimrc) is not required
  even when a very old version of vim-plug is upgraded
- Removed redundant code for creating of `g:plug_home` directory

0.5.2

Toggle 0.5.2's commit message
Forced run of post-update hooks using bang commands

PlugInstall! / PlugUpdate!

0.5.1

Toggle 0.5.1's commit message
Fix many subtle issues regarding on-demand loading etc.

- On-demand loading
    - Fix loading of unwanted files (e.g. colors/*.vim, syntax/*.vim, etc.)
- Filetyp-based on-demand loading
    - Load `after/ftdetect` as well
    - Make sure indent files are loaded by invoking
      `doautocmd filetypeindent FileType`
- Ensure plugin loaded when it was added after Vim started
- Do not reload $MYVIMRC after installtion/update
    - Instead simply call plug#end()

0.5.0

Toggle 0.5.0's commit message
Update examples

0.4.1

Toggle 0.4.1's commit message
Add `dir` option: managed plugins outside `g:plug_home`

0.4.0

Toggle 0.4.0's commit message
0.4.0

- Added support for locally-managed plugins
    - Plug expression should start with either `/`, `~`, or `$`
- Added `frozen` option for not updating/installing unless explicitly specifed
- Errors during help tag generation will be ignored
- Automatic retrial on timeout
- Added `R` keybinding for retrying failed update/installation
- Workaround for screen freeze problem on GUI MacVim

0.3.6

Toggle 0.3.6's commit message
0.3.6

- Real-time progress report during parallel installation/update