| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 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 | |
| 2015-01-30 | Improve syntax highlighting of main page | ryanss | 1 | -0/+12 | |
| 2015-01-29 | Format main page closer to actual website layout | ryanss | 1 | -6/+27 | |
| 2015-01-22 | Improve handling of string encoding/decoding | ryanss | 1 | -2/+8 | |
| 2015-01-21 | Add "Ignore" syntax highlighting to top story id's | ryanss | 1 | -0/+1 | |
| 2015-01-20 | Specify code block syntax highlighting better to stop false positives | ryanss | 1 | -1/+1 | |
| 2015-01-19 | Add syntax hightlighting to code blocks | ryanss | 2 | -3/+11 | |
| 2015-01-18 | Improve formatting of comment <code> blocks | ryanss | 1 | -3/+20 | |
| 2015-01-17 | Fix encoding issues writing to buffer in terminal vim | ryanss | 1 | -26/+31 | |
| 2015-01-16 | Wrap article url to 80 char width | ryanss | 1 | -1/+2 | |
| 2015-01-15 | Add ability to handle links spanning multiple lines | ryanss | 2 | -20/+40 | |
| 2015-01-14 | Add blank line between comment paragraphs | ryanss | 1 | -1/+2 | |
| 2015-01-13 | Use fuckyeahmarkdown.com instead of python-readability | ryanss | 8 | -2603/+11 | |
| 2015-01-12 | Add readability parsing for reading linked pages | ryanss | 9 | -5/+2616 | |
| 2015-01-11 | Add anchor tag parsing and syntax highlighting | ryanss | 2 | -2/+18 | |
| 2015-01-10 | Add syntax highlighting of comment headers | ryanss | 3 | -2/+17 | |
