summaryrefslogtreecommitdiff
path: root/plugin
AgeCommit message (Collapse)AuthorFilesLines
2015-06-17Fix runaway italic syntax when no closing underscoreryanss1-1/+1
Example comment [9720796]
2015-04-26Release version 0.2ryanss1-1/+1
2015-04-04Open different story lists in different buffersryanss1-1/+4
Before this change trying to open a second, different story list using the optional HackerNews command arugment would not do anything if a .hackernews buffer was already open.
2015-04-03Move default settings from ftplugin to pluginryanss1-0/+11
:HackerNews commands needs `g:hackernews_stories` set before ftplugin code is executed.
2015-03-30Fix syntax highlighting issuesryanss1-0/+3
2015-03-15override in function definitionJosh Hartigan1-1/+1
2015-03-08Add ability to view alternate pages, Closes #27ryanss1-1/+17
ask, show, shownew, jobs, best, active, newest, noobstories
2015-02-10Wait for :HackerNews command to load python code Fixes #22ryanss2-332/+4
Once you import a python module into an instance of vim it does not get reloaded when a plugin manager updates the plugin. This can cause errors when, for example, a new function is added to the python module and updated vim code is trying to call it. This commit does two things: 1) Does not load the python code until the :HackerNews command is called. There is no need to load the python code during vim startup if the plugin will not be used. 2) Each time the :HackerNews command is issued and a .hackernews buffer is opened the python code is reloaded to avoid the errors previously mentioned.
2015-02-09Save cursor position when moving back/forward #11ryanss2-1/+20
2015-02-09Remove newline from end of code-block regexSimon Woolf1-1/+1
There isn't always a newline after </pre>
2015-02-08Fix #16 Enable `filetype plugin` and `syntax` optionsryanss1-0/+5
If `filetype plugin` is off the key remaps defined in `ftplugin/hackernews.vim` won't be loaded and pressing `o` will just create a new line instead of following links.
2015-02-08Improve handling of job items and Ask HN itemsryanss1-12/+62
2015-02-08Improve HTTP Error informationryanss1-0/+9
2015-02-08Fix #5 Timeout HTTP requests after 5 scondsryanss1-7/+24
2015-02-08Fix handling of Hacker News links in comments and articlesryanss1-1/+1
2015-02-08Fix #9 ImportError on Windowsryanss1-1/+1
Use raw string literal to add vim script path to python system path so it doesn't escape single backslash characters.
2015-02-07Release version 0.1.1ryanss2-2/+2
2015-02-07Fix #1, some job items don't contain a 'domain' key in the APIryanss1-4/+9
2015-02-07Release version 0.1ryanss2-0/+2
2015-02-07Add Roadmap and Contribution sections to READMEryanss2-0/+21
2015-02-07Pass flake8 and some refactoringryanss1-23/+17
2015-02-06Add opening links with default web browserryanss2-8/+17
2015-02-03Change item header to be more like websiteryanss1-3/+4
2015-02-02Improve job posting format/syntax on main pageryanss1-2/+3
2015-01-31Improve handling of Hacker News item linksryanss1-6/+23
2015-01-29Format main page closer to actual website layoutryanss1-6/+27
2015-01-22Improve handling of string encoding/decodingryanss1-2/+8
2015-01-19Add syntax hightlighting to code blocksryanss1-3/+10
2015-01-18Improve formatting of comment <code> blocksryanss1-3/+20
2015-01-17Fix encoding issues writing to buffer in terminal vimryanss1-26/+31
2015-01-16Wrap article url to 80 char widthryanss1-1/+2
2015-01-15Add ability to handle links spanning multiple linesryanss1-19/+39
2015-01-14Add blank line between comment paragraphsryanss1-1/+2
2015-01-13Use fuckyeahmarkdown.com instead of python-readabilityryanss8-2603/+11
2015-01-12Add readability parsing for reading linked pagesryanss9-5/+2616
2015-01-11Add anchor tag parsing and syntax highlightingryanss1-2/+17
2015-01-10Add syntax highlighting of comment headersryanss2-2/+5
2015-01-09Start each comment paragraph on a new lineryanss1-6/+7
2015-01-08Handle deleted comments gracefullyryanss1-1/+1
Deleted comments do not have a 'user' key
2015-01-07Unescape html entities in commentsryanss1-1/+4
2015-01-06Add story function with nested commentsryanss2-1/+41
2015-01-05Initial commitryanss2-0/+36