diff options
Diffstat (limited to '.config/nvim/plugged/nerdtree/.github')
5 files changed, 0 insertions, 108 deletions
diff --git a/.config/nvim/plugged/nerdtree/.github/ISSUE_TEMPLATE/bug.md b/.config/nvim/plugged/nerdtree/.github/ISSUE_TEMPLATE/bug.md deleted file mode 100644 index dd35135..0000000 --- a/.config/nvim/plugged/nerdtree/.github/ISSUE_TEMPLATE/bug.md +++ /dev/null @@ -1,45 +0,0 @@ ---- -name: "Bug Report" -about: "NERDTree is misbehaving? Tell us about it." -labels: bug ---- -<!-- Attention! Please Read! - -Please fill out ALL the information below so that the issue can be fully -understood. Omitting information will delay the resolution of your issue. It -will be labeled "Needs More Info", and may be closed until there is enough -information. - -Keep in mind that others may have the same question in the future. The better -your information, the more likely they'll be able to help themselves. --> - -#### Self-Diagnosis -<!-- Check the boxes after creating the issue, or use [x]. --> -- [ ] I have searched the [issues](https://github.com/scrooloose/nerdtree/issues) for an answer to my question. -- [ ] I have reviewed the NERDTree documentation. `:h NERDTree` -- [ ] I have reviewed the [Wiki](https://github.com/scrooloose/nerdtree/wiki). -- [ ] I have searched the web for an answer to my question. - -#### Environment (for bug reports) -- [ ] Operating System: -- [ ] Vim/Neovim version `:echo v:version`: -- [ ] NERDTree version, found on 1st line in NERDTree quickhelp `?`: -- [ ] vimrc settings - - [ ] NERDTree variables - ```vim - ``` - - Other NERDTree-dependent Plugins - - [ ] jistr/vim-nerdtree-tabs - - [ ] ryanoasis/vim-devicons - - [ ] tiagofumo/vim-nerdtree-syntax-highlight - - [ ] Xuyuanp/nerdtree-git-plugin - - [ ] Others (specify): - - [ ] I've verified the issue occurs with only NERDTree installed. - -#### Steps to Reproduce the Issue -1. - -#### Current Result (Include screenshots where appropriate.) - -#### Expected Result - diff --git a/.config/nvim/plugged/nerdtree/.github/ISSUE_TEMPLATE/feature_request.md b/.config/nvim/plugged/nerdtree/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index 35db0f6..0000000 --- a/.config/nvim/plugged/nerdtree/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -name: "Feature Request" -about: "What new feature are you requesting for NERDTree?" -labels: "feature request" ---- - -#### Description - diff --git a/.config/nvim/plugged/nerdtree/.github/ISSUE_TEMPLATE/question.md b/.config/nvim/plugged/nerdtree/.github/ISSUE_TEMPLATE/question.md deleted file mode 100644 index 25f15b0..0000000 --- a/.config/nvim/plugged/nerdtree/.github/ISSUE_TEMPLATE/question.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -name: "General Question" -about: "Having trouble setting up NERDTree? Need clarification on a setting? Ask your question here." -labels: "general question" ---- -<!-- Attention! Please Read! - -Please fill out ALL the information below so that the issue can be fully -understood. Omitting information will delay the resolution of your issue. It -will be labeled "Needs More Info", and may be closed until there is enough -information. - -Keep in mind that others may have the same question in the future. The better -your information, the more likely they'll be able to help themselves. --> - -#### Self-Diagnosis -<!-- Check the boxes after creating the issue, or use [x]. --> -- [ ] I have searched the [issues](https://github.com/scrooloose/nerdtree/issues) for an answer to my question. -- [ ] I have reviewed the NERDTree documentation. `:h NERDTree` -- [ ] I have reviewed the [Wiki](https://github.com/scrooloose/nerdtree/wiki). -- [ ] I have searched the web for an answer to my question. - -#### State Your Question - diff --git a/.config/nvim/plugged/nerdtree/.github/PULL_REQUEST_TEMPLATE.md b/.config/nvim/plugged/nerdtree/.github/PULL_REQUEST_TEMPLATE.md deleted file mode 100644 index 24dba3f..0000000 --- a/.config/nvim/plugged/nerdtree/.github/PULL_REQUEST_TEMPLATE.md +++ /dev/null @@ -1,16 +0,0 @@ -### Description of Changes -Closes # <!-- Issue number this PR addresses. If none, remove this line. --> - - ---- -### New Version Info - -#### Author's Instructions -- [ ] Derive a new `MAJOR.MINOR.PATCH` version number. Increment the: - - `MAJOR` version when you make incompatible API changes - - `MINOR` version when you add functionality in a backwards-compatible manner - - `PATCH` version when you make backwards-compatible bug fixes -- [ ] Update [CHANGELOG.md](https://github.com/scrooloose/nerdtree/blob/master/CHANGELOG.md), following the established pattern. -#### Collaborator's Instructions -- [ ] Review [CHANGELOG.md](https://github.com/scrooloose/nerdtree/blob/master/CHANGELOG.md), suggesting a different version number if necessary. -- [ ] After merge, tag the merge commit, e.g. `git tag -a 3.1.4 -m "v3.1.4" && git push origin --tags` diff --git a/.config/nvim/plugged/nerdtree/.github/workflows/vint.yml b/.config/nvim/plugged/nerdtree/.github/workflows/vint.yml deleted file mode 100644 index 36d7258..0000000 --- a/.config/nvim/plugged/nerdtree/.github/workflows/vint.yml +++ /dev/null @@ -1,15 +0,0 @@ -name: Vint -on: [push, pull_request] -jobs: - vint: - strategy: - fail-fast: false - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@master - - name: Run vint with reviewdog - uses: reviewdog/action-vint@v1.0.1 - with: - github_token: ${{ secrets.github_token }} - reporter: github-pr-review |