aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'release/v2.0.0'v2.0.0Tom Ryder2019-06-104-39/+25
|\ | | | | | | | | | | | | | | | | * release/v2.0.0: Add documentary comments Rearrange autocmds Backport to Vim 7.0 Support tabs on startup as well as windows Refactor and simplify, remove autoload
| * Bump VERSIONTom Ryder2019-06-101-1/+1
| |
| * Add documentary commentsTom Ryder2019-06-101-0/+23
| |
| * Rearrange autocmdsTom Ryder2019-06-101-4/+4
| |
| * Backport to Vim 7.0Tom Ryder2019-06-101-1/+1
| | | | | | | | :tabdo and :windo don't accept ranges in old Vim.
| * Support tabs on startup as well as windowsTom Ryder2019-06-101-2/+2
| |
| * Refactor and simplify, remove autoloadTom Ryder2019-06-103-46/+9
| | | | | | | | | | | | Drop support for local values for 'cursorline'. I think I'm getting better at this.
| * Merge branch 'release/v1.0.0' into developTom Ryder2019-05-301-1/+1
| |\
* | \ Merge branch 'release/v1.0.0'v1.0.0Tom Ryder2019-05-304-56/+32
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * release/v1.0.0: Add comments Remove unneeded part of documentation Correct winnr() call Restore BufEnter hook Use much shorter implementation for Load() Remove BufEnter hook Run load and restore functions only with multiwin Pare down variable names and usage Merge autocmd definitions Remove support for g:cursorline_current_insert Strip comments out from plugin file Factor out functions into autoload
| * | Bump VERSIONTom Ryder2019-05-301-1/+1
| |/
| * Add commentsTom Ryder2019-05-301-4/+13
| |
| * Remove unneeded part of documentationTom Ryder2019-05-301-2/+1
| |
| * Correct winnr() callTom Ryder2019-05-301-1/+1
| | | | | | | | It doesn't take an argument like '.' for the current window.
| * Restore BufEnter hookTom Ryder2019-05-301-0/+2
| | | | | | | | | | The bug still shows up. Opening a window a second time onto an existing buffer doesn't restore the cursorline.
| * Use much shorter implementation for Load()Tom Ryder2019-05-301-14/+1
| |
| * Remove BufEnter hookTom Ryder2019-05-301-2/+2
| | | | | | | | Let's see if this bug still shows up.
| * Run load and restore functions only with multiwinTom Ryder2019-05-301-6/+6
| |
| * Pare down variable names and usageTom Ryder2019-05-301-3/+2
| |
| * Merge autocmd definitionsTom Ryder2019-05-301-6/+2
| |
| * Remove support for g:cursorline_current_insertTom Ryder2019-05-302-13/+4
| | | | | | | | | | I don't use it, and I'm not sure it's terribly useful; I might put it back if there's a good way to leverage the hooks for it.
| * Strip comments out from plugin fileTom Ryder2019-05-301-16/+10
| | | | | | | | We'll put some back later on.
| * Factor out functions into autoloadTom Ryder2019-05-302-37/+36
| | | | | | | | | | | | This isn't actually very helpful at the moment, because the autoload file gets included on VimEnter. I'm hoping that I can defer that in most circumstances.
| * Merge branch 'release/v0.5.0' into developTom Ryder2019-05-251-1/+1
| |\
* | \ Merge branch 'release/v0.5.0'v0.5.0Tom Ryder2019-05-253-6/+3
|\ \ \ | | |/ | |/| | | | | | | | | | * release/v0.5.0: Update date Remove overzealous load guard checks
| * | Bump VERSIONTom Ryder2019-05-251-1/+1
| |/
| * Update dateTom Ryder2019-05-251-1/+1
| |
| * Remove overzealous load guard checksTom Ryder2019-05-251-4/+1
| |
| * Merge branch 'release/v0.4.0' into developTom Ryder2019-05-091-1/+1
| |\
* | \ Merge branch 'release/v0.4.0'v0.4.0Tom Ryder2019-05-094-15/+15
|\ \ \ | | |/ | |/| | | | | | | | | | * release/v0.4.0: Remove unneeded variable scoping Switch to two-spacing
| * | Bump VERSIONTom Ryder2019-05-091-1/+1
| |/
| * Remove unneeded variable scopingTom Ryder2019-05-091-7/+7
| |
| * Switch to two-spacingTom Ryder2019-05-093-7/+7
| |
| * Merge branch 'release/v0.3.0' into developTom Ryder2018-09-091-1/+1
| |\ | | | | | | | | | | | | * release/v0.3.0: Bump VERSION
* | \ Merge branch 'release/v0.3.0'v0.3.0Tom Ryder2018-09-092-16/+9
|\ \ \ | | |/ | |/| | | | | | | | | | * release/v0.3.0: Call restore function on BufEnter Simplify suspend/restore funcs considerably
| * | Bump VERSIONTom Ryder2018-09-091-1/+1
| |/
| * Call restore function on BufEnterTom Ryder2018-09-091-2/+4
| | | | | | | | | | | | | | | | Reported by m_ben in #vim; if a window is opened onto a buffer that already exists, 'cursorline' is not locally restored. I think this has something to do with a value for the option being a property of the buffer rather than the window, so we force the option on at BufEnter time as well.
| * Simplify suspend/restore funcs considerablyTom Ryder2018-09-091-13/+4
| |
| * Merge branch 'release/v0.2.0' into developTom Ryder2018-08-051-1/+1
| |\ | | | | | | | | | | | | * release/v0.2.0: Bump VERSION
* | \ Merge branch 'release/v0.2.0'v0.2.0Tom Ryder2018-08-053-6/+7
|\ \ \ | | |/ | |/| | | | | | | | | | | | | * release/v0.2.0: Bump VERSION Update documentation on events Add FocusLost/FocusGained hooks
| * | Bump VERSIONTom Ryder2018-08-051-1/+1
| |/
| * Update documentation on eventsTom Ryder2018-08-051-2/+3
| |
| * Add FocusLost/FocusGained hooksTom Ryder2018-08-051-3/+3
| |
| * Merge branch 'hotfix/v0.1.1' into developTom Ryder2018-08-042-2/+2
| |\ | | | | | | | | | | | | | | | * hotfix/v0.1.1: Bump VERSION Correct backwards loop-skipping condition
* | \ Merge branch 'hotfix/v0.1.1'v0.1.1Tom Ryder2018-08-042-2/+2
|\ \ \ | |/ / |/| / | |/ | | | | * hotfix/v0.1.1: Bump VERSION Correct backwards loop-skipping condition
| * Bump VERSIONTom Ryder2018-08-041-1/+1
| |
| * Correct backwards loop-skipping conditionTom Ryder2018-08-041-1/+1
|/
* First versionv0.1.0Tom Ryder2018-08-044-0/+123