Add option to create note from tag, and improve auto-completer a bit

This commit is contained in:
Veronica Berglyd Olsen
2023-11-06 22:25:28 +01:00
parent 1ab35b5b63
commit f17e1f38de
4 changed files with 65 additions and 23 deletions
+9
View File
@@ -61,6 +61,15 @@ class nwItemLayout(Enum):
# END Enum nwItemLayout
class nwTrinary(Enum):
NEGATIVE = -1
UNKNOWN = 0
POSITIVE = 1
# END Enum nwTrinary
class nwDocMode(Enum):
VIEW = 0