You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* boilerplate ported and adjusted off PR #38
* fix: proper padding for fields with no statusIcon
* @seflue review: column alignment compacted from if-else to max() && typo
Co-authored-by: Sebastian Flügge <[email protected]>
* add typeIcon and statusIcon info to docs
---------
Co-authored-by: Sebastian Flügge <[email protected]>
Copy file name to clipboardExpand all lines: docs/Config.md
+29Lines changed: 29 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,6 +51,15 @@ gui:
51
51
- status
52
52
- summary
53
53
selectCreatedIssue: true
54
+
typeIcons:
55
+
Bug: "🐞"
56
+
Story: "📖"
57
+
Sub-task: "📎"
58
+
statusIcons:
59
+
To do: "📋"
60
+
On hold: "⏸️"
61
+
Future: "🔜"
62
+
54
63
keybinding:
55
64
universal:
56
65
quit: q
@@ -184,6 +193,26 @@ gui:
184
193
selectCreatedIssue: true
185
194
```
186
195
196
+
`typeIcons`will have issue `type` names replaced by the emojis you set. Mappings are case-sensitive, and support not only emojis but also plaintext. Enable the field `type` under `issueListFields` to profit from this option.
197
+
198
+
```
199
+
gui:
200
+
typeIcons:
201
+
Bug: "🐞"
202
+
Story: "📖"
203
+
Sub-task: "📎"
204
+
```
205
+
206
+
`statusIcons` will have issue `status` indicators replaced by the emojis you set. Default indicators may be shared for similar states (e.g. To do / Future), so one may get more granularity from this option. Mappings are case-sensitive, and support not only emojis but also plaintext. Enable the field `status` under `issueListFields` to profit from this option.
207
+
208
+
```
209
+
gui:
210
+
statusIcons:
211
+
To do: "📋"
212
+
On hold: "⏸️"
213
+
Future: "🔜"
214
+
```
215
+
187
216
### Issue list fields
188
217
189
218
Controls which columns appear in the issue list. Available fields.
0 commit comments