mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
dev/list-plugins: trivial refactor
This commit is contained in:
parent
6a9d840370
commit
6e52e32d40
1 changed files with 1 additions and 3 deletions
|
@ -6,8 +6,6 @@ from dataclasses import dataclass
|
|||
from enum import Enum
|
||||
from typing import Optional
|
||||
|
||||
QUESTION_MARK = "❔"
|
||||
|
||||
# Ignore files that are not plugin definitions
|
||||
EXCLUDES: list[str] = [
|
||||
# Patterns
|
||||
|
@ -56,7 +54,7 @@ class Kind(Enum):
|
|||
|
||||
|
||||
class State(Enum):
|
||||
UNKNOWN = QUESTION_MARK
|
||||
UNKNOWN = "❔"
|
||||
NEW = "✅"
|
||||
OLD = "❌"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue