Thanks to visit codestin.com Credit goes to github.com
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 5db9ab7 commit 9483ac2Copy full SHA for 9483ac2
plist/generate_list.py
@@ -8,9 +8,10 @@
8
keys = xmldoc.getElementsByTagName('dict')[0].getElementsByTagName('key')
9
summary = ""
10
prefix = ""
11
+ file_short = file[:file.find('-')]
12
for key in keys:
13
if key.firstChild.nodeValue == 'IDECodeSnippetSummary':
14
summary = key.nextSibling.nextSibling.firstChild.nodeValue
15
elif key.firstChild.nodeValue == 'IDECodeSnippetCompletionPrefix':
16
prefix = key.nextSibling.nextSibling.firstChild.nodeValue
- print "%s:[%s] %s" % (file, prefix, summary)
17
+ print "%s... :[%s] %s" % (file_short, prefix, summary)
0 commit comments