Skip to content

Commit 93763d2

Browse files
authored
Merge pull request #240 from akstrfn/master
fix bug for tag searching
2 parents 0855f61 + 3deca63 commit 93763d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ftplugin/orgmode/plugins/TagsProperties.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def find_tags(cls):
108108
# user pressed <Esc> abort any further processing
109109
return
110110

111-
heading.tags = [x for x in u_decode(tags).strip().strip(u':').split(u':') if x.strip() != u'']
111+
tags = [x for x in u_decode(tags).strip().strip(u':').split(u':') if x.strip() != u'']
112112
if tags:
113113
searchstring = u'\\('
114114
first = True

0 commit comments

Comments
 (0)