We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 355eff6 commit 920cc9dCopy full SHA for 920cc9d
zettelgeist/zfind.py
@@ -112,6 +112,14 @@ def main():
112
print(row['document'])
113
print()
114
115
+ # TODO eliminate this duplication later. document/filename are the only special fields
116
+ if argsd.get("show_filename"):
117
+ filename = row['filename']
118
+ if len(filename) > 0:
119
+ print(row['filename'])
120
+ print()
121
+
122
123
if args.count:
124
print("%d Zettels matched search" % search_count)
125
zettelgeist/zversion.py
@@ -2,7 +2,7 @@
2
# ZettelGeist Version for Python
3
#
4
5
-__version__ = "1.0.19"
+__version__ = "1.0.20"
6
7
def version():
8
return __version__
0 commit comments