summaryrefslogtreecommitdiff
path: root/ftplugin/hackernews.py
diff options
context:
space:
mode:
authorryanss2015-02-16 10:57:55 -0500
committerryanss2015-02-16 10:57:55 -0500
commit5712aafb874ce19b38881ddb4a0e158f6741dae5 (patch)
treee61460cba3fc824d82da9d8e97883673fbb991ce /ftplugin/hackernews.py
parent49cb818fce8d46f4ede9f92c477756053e1639b6 (diff)
downloadvim-hn-5712aafb874ce19b38881ddb4a0e158f6741dae5.tar.gz
Front page title line now links to item url. Close #4
The first line of of each front page item (that contains the title and domain) links to the external url associated with the item. The second line of each item (that contains the points, user, comment count) links to the comments page. This is consistent with how the actual Hacker News front page works.
Diffstat (limited to 'ftplugin/hackernews.py')
-rw-r--r--ftplugin/hackernews.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ftplugin/hackernews.py b/ftplugin/hackernews.py
index 2c7fd2a..8480979 100644
--- a/ftplugin/hackernews.py
+++ b/ftplugin/hackernews.py
@@ -69,9 +69,9 @@ def main():
if 'title' not in item:
continue
if 'domain' in item:
- line = "%s%d. %s (%s) [%d]"
+ line = "%s%d. %s (%s) [%s]%s"
line %= (" " if i+1 < 10 else "", i+1, item['title'],
- item['domain'], item['id'])
+ item['domain'], item['url'], unichr(160))
bwrite(line)
else:
line = "%s%d. %s [%d]"