nerdtree

A tree explorer plugin for vim.
Index Commits Files Refs
.github/PULL_REQUEST_TEMPLATE.md (1114B)
   1 ### Description of Changes
   2 Closes #    <!-- Enter the issue number this PR addresses. If none, remove this line. -->
   3 
   4 
   5 ---
   6 ### New Version Info
   7 
   8 #### Author's Instructions
   9 - [ ] Derive a new `MAJOR.MINOR.PATCH` version number. Increment the:
  10     - `MAJOR` version when you make incompatible API changes
  11     - `MINOR` version when you add functionality in a backwards-compatible manner
  12     - `PATCH` version when you make backwards-compatible bug fixes
  13 - [ ] Update [CHANGELOG.md](https://github.com/scrooloose/nerdtree/blob/master/CHANGELOG.md), following the established pattern.
  14 #### Collaborator's Instructions
  15 - [ ] Review [CHANGELOG.md](https://github.com/scrooloose/nerdtree/blob/master/CHANGELOG.md), suggesting a different version number if necessary.
  16 - [ ] After merging, tag the commit using these (Mac-compatible) bash commands:
  17     ```bash
  18     git checkout master
  19     git pull
  20     sed -n "$(grep -n -m2 '####' CHANGELOG.md | cut -f1 -d: | sed 'N;s/\n/,/')p" CHANGELOG.md | sed '$d'
  21     git tag -a $(read -p "Tag Name: " tag;echo $tag) -m"$(git show --quiet --pretty=%s)";git push origin --tags
  22     ```