🔧 Massive update to personal gentoo configs
This commit is contained in:
parent
505f6363ab
commit
6686861b86
497 changed files with 29421 additions and 7191 deletions
48
gentoo/dotfiles/.zsh/zsh-autocomplete/.github/ISSUE_TEMPLATE/bug-report.md
vendored
Normal file
48
gentoo/dotfiles/.zsh/zsh-autocomplete/.github/ISSUE_TEMPLATE/bug-report.md
vendored
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
---
|
||||
name: Bug report
|
||||
about: Always include a minimal, reproducible test case. If I cannot reproduce it, then I cannot fix it!
|
||||
title: ''
|
||||
labels: type::bug report
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
|
||||
## Environment
|
||||
<!-- Run the code below and share the output. -->
|
||||
```zsh
|
||||
% typeset -p1 VENDOR OSTYPE ZSH_PATCHLEVEL _autocomplete__funcfiletrace
|
||||
<output>
|
||||
% git -C ~autocomplete log --oneline -n1
|
||||
<output>
|
||||
```
|
||||
|
||||
* Operating system: <!-- for example, 'macOS Ventura 13.4' or 'Ubuntu 22.04.2 LTS' -->
|
||||
* Terminal emulator: <!-- for example, 'Terminal.app' or 'Konsole' -->
|
||||
|
||||
|
||||
## Steps to reproduce
|
||||
<!-- Update the code below to create a test case that demonstrates the problem
|
||||
in an isolated environment. -->
|
||||
```zsh
|
||||
% cd $(mktemp -d)
|
||||
% git clone --depth 1 -- https://github.com/marlonrichert/zsh-autocomplete.git
|
||||
<output>
|
||||
% > .zshrc <<EOF
|
||||
setopt interactivecomments transientrprompt
|
||||
PS1='%# '
|
||||
PS2=
|
||||
RPS2='%^'
|
||||
source $PWD/zsh-autocomplete/zsh-autocomplete.plugin.zsh
|
||||
EOF
|
||||
% env -i HOME=$PWD PATH=$PATH TERM=$TERM ${TERMINFO:+TERMINFO=$TERMINFO} zsh -d
|
||||
% <inputs>
|
||||
<output>
|
||||
```
|
||||
|
||||
<details>
|
||||
<summary>Contents of <code>~autocomplete-log/YYYY-MM-DD.log</code> (click to expand)</summary>
|
||||
<pre>
|
||||
<!-- Replace this line with the contents of the above log file. -->
|
||||
</pre>
|
||||
</details>
|
||||
1
gentoo/dotfiles/.zsh/zsh-autocomplete/.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
1
gentoo/dotfiles/.zsh/zsh-autocomplete/.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
blank_issues_enabled: false
|
||||
32
gentoo/dotfiles/.zsh/zsh-autocomplete/.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
32
gentoo/dotfiles/.zsh/zsh-autocomplete/.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
---
|
||||
name: Feature request
|
||||
about: If this template doesn't suit your needs, then please open a Discussion instead.
|
||||
title: ''
|
||||
labels: type::feature request
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
## What do you want?
|
||||
<!-- Give a brief summary of the feature. -->
|
||||
|
||||
## Why do you want this?
|
||||
<!-- Explain what you would use this for or how this would enhance your experience. -->
|
||||
|
||||
## Who else would benefit from this?
|
||||
<!-- Describe what kind of users would enjoy this feature. -->
|
||||
|
||||
## How should it work?
|
||||
<!-- Fill out the steps below. -->
|
||||
|
||||
Given the following situation:
|
||||
* <!-- State the circumstances under which this feature would apply. -->
|
||||
*
|
||||
|
||||
When I perform the following steps:
|
||||
1. <!-- List what actions you would take in the situation described above. -->
|
||||
1. <!-- Numbering is automatic. -->
|
||||
|
||||
Then I expect the following to happen:
|
||||
* <!-- Describe how you would expect the system to behave in response to your actions above. -->
|
||||
*
|
||||
20
gentoo/dotfiles/.zsh/zsh-autocomplete/.github/workflows/lock.yml
vendored
Normal file
20
gentoo/dotfiles/.zsh/zsh-autocomplete/.github/workflows/lock.yml
vendored
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
name: 'Lock Threads'
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '30 5,17 * * *'
|
||||
|
||||
permissions:
|
||||
issues: write
|
||||
pull-requests: write
|
||||
|
||||
concurrency:
|
||||
group: lock
|
||||
|
||||
jobs:
|
||||
action:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: dessant/lock-threads@v2
|
||||
with:
|
||||
issue-lock-inactive-days: '90'
|
||||
25
gentoo/dotfiles/.zsh/zsh-autocomplete/.github/workflows/test.yml
vendored
Normal file
25
gentoo/dotfiles/.zsh/zsh-autocomplete/.github/workflows/test.yml
vendored
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
name: test
|
||||
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
test-macos:
|
||||
runs-on: macos-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
submodules: 'true'
|
||||
- run: ./run-tests.zsh
|
||||
shell: zsh {0}
|
||||
test-ubuntu:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
submodules: 'true'
|
||||
- run: sudo apt install zsh
|
||||
- run: ./run-tests.zsh
|
||||
shell: zsh {0}
|
||||
Loading…
Add table
Add a link
Reference in a new issue