forked from andweeb/presence.nvim
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into lazy-plugin-manager
- Loading branch information
Showing
15 changed files
with
2,432 additions
and
2,106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,98 @@ | ||
name: Issue report | ||
description: Report any errors, bugs, or unexpected behaviors related to presence.nvim | ||
title: "[Bug]: " | ||
labels: [bug] | ||
assignees: | ||
- jiriks74 | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Before reporting, please search [existing issues](https://github.com/andweeb/presence.nvim/issues) and make sure that presence.nvim is updated to the latest version. | ||
- type: checkboxes | ||
attributes: | ||
label: Are you on the latest version? | ||
options: | ||
- label: I have updated to the latest version. | ||
required: true | ||
|
||
- type: checkboxes | ||
attributes: | ||
label: Have you tried it with default config? | ||
options: | ||
- label: I have tried the default config. | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: "Description" | ||
description: "A short summary of the error, bug, or unexpected behavior you're facing." | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: "Neovim version" | ||
description: "Output of `nvim --version`" | ||
render: markdown | ||
placeholder: | | ||
NVIM v0.6.0-dev+209-g0603eba6e | ||
NVIM: v0.6.0-dev+209-g0603eba6e | ||
Build type: Release | ||
LuaJIT 2.1.0-beta3 | ||
LuaJIT: 2.1.0-beta3 | ||
value: | | ||
NVIM: | ||
Build type: | ||
LuaJIT: | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
attributes: | ||
label: "OS information" | ||
placeholder: "macOS 12.0.1" | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: "Steps to reproduce" | ||
description: "Steps to reproduce the issue with your config(s) if applicable" | ||
description: "Steps to reproduce the issue with your config(s) if applicable." | ||
placeholder: | | ||
1. Setup presence.nvim with `require("presence"):setup({...})` | ||
2. Run Neovim with `nvim test.txt` | ||
3. ... | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: "Logs" | ||
description: "The full list of `:messages` from one or more `nvim` instances" | ||
description: "The full list of `:messages` from one or more `nvim` instances.\nPlease insert the logs into code blocks." | ||
placeholder: | | ||
<details> | ||
``` | ||
[presence.nvim] Using runtime path: /run/user/1000 | ||
[presence.nvim] Using Discord IPC socket path: /run/user/1000/discord-ipc-0 | ||
[presence.nvim] Checking Discord IPC socket at /run/user/1000/discord-ipc-0... | ||
``` | ||
</details> | ||
value: | | ||
<details> | ||
``` | ||
``` | ||
</details> | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: "Aditional info" | ||
description: "If you'd like to add anything else put it here." | ||
validations: | ||
required: false |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Feature request | ||
description: Report any errors, bugs, or unexpected behaviors related to presence.nvim | ||
title: "[FEAT]: " | ||
labels: [enhancement] | ||
assignees: | ||
- jiriks74 | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: Is your feature request related to a problem? | ||
description: A clear and concise description of what the problem is. Ex. I'm always frustrated when... | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Describe the solution you'd like | ||
description: A clear and concise description of what you want to happen. | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
attributes: | ||
label: Describe alternatives you've considered | ||
description: A clear and concise description of any alternative solutions or features you've considered. | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
attributes: | ||
label: Additional context | ||
description: Add any other context or screenshots about the feature request here. | ||
validations: | ||
required: false |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
name: Luacheck | ||
on: [push, pull_request] | ||
jobs: | ||
Luacheck: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Luacheck linter | ||
uses: lunarmodules/luacheck@v1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: StyLua | ||
on: [push, pull_request] | ||
jobs: | ||
StyLuacheck: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: StyLua check | ||
uses: JohnnyMorganz/stylua-action@v3 | ||
with: | ||
token: ${{ secrets.GH_TOKEN }} | ||
version: v0.18.2 # NOTE: we recommend pinning to a specific version in case of formatting changes | ||
# CLI arguments | ||
args: --check . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.