| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2015-02-28 | Highlight OP username in comment titles | ryanss | 2 | -1/+5 | |
| 2015-02-27 | Fix error rendering links to individual comments | ryanss | 1 | -39/+48 | |
| 2015-02-25 | Save cursor position when using back/forward commands | ryanss | 1 | -2/+6 | |
| 2015-02-24 | Improve helper motions and documentation | ryanss | 3 | -17/+60 | |
| 2015-02-22 | Fix extra blank line above code blocks with +python3 | ryanss | 1 | -1/+4 | |
| 2015-02-22 | Add highlighted links and navigation to article text | ryanss | 1 | -7/+13 | |
| 2015-02-21 | Run Travis tests on Vim with +python and +python3 | ryanss | 2 | -3/+17 | |
| 2015-02-21 | Fix #28 Add Python3 support | ryanss | 2 | -34/+53 | |
| 2015-02-19 | Improve handling of html tags in comments | ryanss | 2 | -15/+24 | |
| Fixes errors trying to view comments for item=8955426 | |||||
| 2015-02-19 | Add motion to move between items on front page easier | ryanss | 3 | -12/+26 | |
| From @alexluecke PR #8 Closes #3 | |||||
| 2015-02-16 | Front page title line now links to item url. Close #4 | ryanss | 2 | -3/+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. | |||||
| 2015-02-15 | Fix #10 Remap `gx` to use hackernews.link() function | ryanss | 1 | -0/+1 | |
| The hackernews.link(external=True) function works better than the default `gx` functionality. By default, `gx` will sometimes not work on urls surrounded by brackets/braces/parenthesis, and will not work on urls spanning multiple lines. The hackernews.link() function does not have these issues. | |||||
| 2015-02-15 | Add Travis CI badge to README | ryanss | 1 | -1/+1 | |
| 2015-02-15 | Add basic tests and Travis integration. Close #24 | ryanss | 2 | -0/+73 | |
| 2015-02-10 | Syntax regex fix | ryanss | 1 | -1/+1 | |
| `([http://example.net])` was being highlighted like a front page domain `Comment` instead of a link url `Constant`. | |||||
| 2015-02-10 | Syntax regex improvement | ryanss | 1 | -1/+1 | |
| 2015-02-10 | Fix syntax regex to match "_an_ hour ago" | ryanss | 1 | -2/+2 | |
| 2015-02-10 | Remove unwanted extra blank lines around code blocks | ryanss | 2 | -5/+6 | |
| 2015-02-10 | Improve specificity of syntax match regex | ryanss | 1 | -1/+1 | |
| This syntax match regex was accidentally highlighting lines in comments that were shifted by one level and contained the word "ago". | |||||
| 2015-02-10 | Fix typo | ryanss | 1 | -1/+1 | |
| 2015-02-10 | Wait for :HackerNews command to load python code Fixes #22 | ryanss | 3 | -28/+36 | |
| 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-09 | Save cursor position when moving back/forward #11 | ryanss | 3 | -1/+27 | |
| 2015-02-09 | Fix code block syntax region regex | ryanss | 1 | -1/+1 | |
| 2015-02-09 | Merge pull request #18 from SimonWoolf/master | ryanss | 1 | -1/+1 | |
| Remove newline from end of code-block regex | |||||
| 2015-02-09 | Remove newline from end of code-block regex | Simon Woolf | 1 | -1/+1 | |
| There isn't always a newline after </pre> | |||||
| 2015-02-08 | Fix #16 Enable `filetype plugin` and `syntax` options | ryanss | 1 | -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-08 | Improve handling of job items and Ask HN items | ryanss | 2 | -12/+63 | |
| 2015-02-08 | Fix #15 Error setting ctermfg=bg when ctermbg=NONE | ryanss | 1 | -5/+10 | |
| 2015-02-08 | Fix #12 Force `Ignore` highlight group to be hidden | ryanss | 1 | -0/+8 | |
| Some colorschemes (ex. Solarized) have defined the `Ignore` syntax highlight group to not be hidden so we need to make sure this group gets hidden properly in both gui and terminal environments. | |||||
| 2015-02-08 | Improve HTTP Error information | ryanss | 1 | -0/+9 | |
| 2015-02-08 | Fix #5 Timeout HTTP requests after 5 sconds | ryanss | 1 | -7/+24 | |
| 2015-02-08 | Fix handling of Hacker News links in comments and articles | ryanss | 1 | -1/+1 | |
| 2015-02-08 | Only remap `o` inside the .hackernews buffer | ryanss | 1 | -2/+2 | |
| 2015-02-08 | Fix #9 ImportError on Windows | ryanss | 1 | -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-07 | Release version 0.1.1 | ryanss | 5 | -5/+5 | |
| 2015-02-07 | Fix #1, some job items don't contain a 'domain' key in the API | ryanss | 1 | -4/+9 | |
| 2015-02-07 | Release version 0.1 | ryanss | 5 | -0/+5 | |
| 2015-02-07 | Add Roadmap and Contribution sections to README | ryanss | 5 | -2/+59 | |
| 2015-02-07 | Add screenshots to README | ryanss | 3 | -0/+4 | |
| 2015-02-07 | Add documentation file | ryanss | 2 | -0/+28 | |
| 2015-02-07 | Add basic usage notes to the README | ryanss | 1 | -0/+11 | |
| 2015-02-07 | Highlight Hacker News header orange | ryanss | 1 | -0/+6 | |
| 2015-02-07 | Pass flake8 and some refactoring | ryanss | 1 | -23/+17 | |
| 2015-02-06 | Add opening links with default web browser | ryanss | 3 | -8/+19 | |
| 2015-02-05 | Add MIT license | ryanss | 2 | -0/+26 | |
| 2015-02-04 | Add basic README | ryanss | 1 | -0/+28 | |
| 2015-02-03 | Change item header to be more like website | ryanss | 1 | -3/+4 | |
| 2015-02-02 | Improve job posting format/syntax on main page | ryanss | 2 | -2/+4 | |
| 2015-02-01 | Fix syntax highlighting of domains on main page | ryanss | 1 | -1/+1 | |
| 2015-01-31 | Improve handling of Hacker News item links | ryanss | 1 | -6/+23 | |
