aboutsummaryrefslogtreecommitdiff
path: root/vim
Commit message (Collapse)AuthorAgeFilesLines
* Add load guard around resolv.vim patchTom Ryder2020-05-101-2/+5
|
* Add a patch on the syntax for resolv.vimTom Ryder2020-05-101-0/+3
|
* Add CAA to the highlighted records in bindzone.vimTom Ryder2020-05-101-2/+2
|
* Add load guard to fortune.vim pluginTom Ryder2020-05-091-0/+4
|
* Format a list of fontsTom Ryder2020-05-091-1/+5
|
* Some spelling fixesTom Ryder2020-05-0913-25/+25
|
* Update squeeze_repeat_blanks.vim to v0.6.1Tom Ryder2020-05-091-0/+0
|
* Update spellfile_local.vim to v0.2.2Tom Ryder2020-05-091-0/+0
|
* Merge branch 'hotfix/v8.31.2' into developTom Ryder2020-05-093-7/+11
|\ | | | | | | | | * hotfix/v8.31.2: Make copies for map(), filter(), and reverse()
| * Make copies for map(), filter(), and reverse()Tom Ryder2020-05-093-7/+11
| | | | | | | | | | I really should have remembered this. Caused broken 'thesaurus' entries, in this case.
* | Test $MYVIM is defined and non-empty for definingTom Ryder2020-05-091-2/+10
| |
* | Use more idiomatic approach to get() defaultingTom Ryder2020-05-091-2/+2
| |
* | Use nested single quotes rather than doubleTom Ryder2020-05-081-4/+4
|/
* Update undofileskip.vim to v0.2.1Tom Ryder2020-05-061-0/+0
|
* Rename undoskip.vim plugin to undofileskip.vimTom Ryder2020-05-062-0/+0
|
* Update spellfile_local.vim HEADTom Ryder2020-05-051-0/+0
|
* Spin undoskip.vim out into its own repositoryTom Ryder2020-05-053-55/+0
|
* Move undoskip.vim function into autoloadTom Ryder2020-05-052-22/+21
| | | | Ready to be spun off now I think
* Pass paths correctly in undoskip.vimTom Ryder2020-05-051-8/+3
|
* Switch undoskip.vim to use globsTom Ryder2020-05-051-9/+12
| | | | | This increases the minimum version required to v7.4.668, but I think that's OK now with v8.2 being rolled out.
* Attempt to imitate 'backupskip' pats in undoskipTom Ryder2020-05-051-7/+14
|
* Revert "Add /tmp to 'backupskip'"Tom Ryder2020-05-051-5/+4
| | | | | | It's part of the default anyway. This reverts commit 5d6f18d9baf4f5a0743ce4c63bb7fb6e5e2d5096.
* Add /tmp to 'backupskip'Tom Ryder2020-05-051-4/+5
|
* Add /usr/tmp to the list of undoskip pathsTom Ryder2020-05-051-0/+1
|
* Break undoskip patterns into linewise listTom Ryder2020-05-051-1/+5
|
* Correct and refine explanation of 'thesaurus'Tom Ryder2020-05-041-9/+6
|
* Merge branch 'feature/vimrc-edit' into developTom Ryder2020-05-041-52/+57
|\ | | | | | | | | * feature/vimrc-edit: Working on rewording vimrc
| * Merge branch 'develop' into feature/vimrc-editTom Ryder2020-05-044-42/+114
| |\ | |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop: Use global variable not autoload for undoskip.vim Test for correct feature for undoskip.vim plugin Flesh out new undoskip.vim plugin a lot Add plugin undoskip.vim; switch 'undofile' on path Update dotfiles(7) manual page Reflow features list Remove spaces around em-dashes Many README.md improvements in phrasing or grammar Order sub-targets of `install` correctly Update PGP key Update dotfiles(7) manual page Reformat paragraphs in README.md Remove outdated description of GnuPG config gen Update documentation of personal mail paths Add comment to installation dry run command Suggest creation of recommended path in docs Update recommended path in documentation Copy, don't reference XDG basedir lists Write v:null back out of XDG routines Remove trailing slashes from default XDG basedir Update PGP key fingerprint Use a dash rather than a three-period ellipsis Tighten :try block around 'dictionary'/'thesaurus' Factor out iteration variables with some maps Test dir lists for emptiness to avoid force :unlet Use v:null in XDG-related contexts Add handling of "after" subdirs in Vim XDG config Separate cache runtime behaviour from config Tolerate unset iteration variables Improve "absolute path" check for XDG base dirs Tidy and correct XDG var getenv() fallback Force unwanted --quoting-style option to ls(1) off Bump updated date for vimrc
* | Use global variable not autoload for undoskip.vimTom Ryder2020-05-031-2/+2
| | | | | | | | Just to be consistent with my other plugins.
* | Test for correct feature for undoskip.vim pluginTom Ryder2020-05-031-1/+1
| | | | | | | | The +persistent_undo feature wasn't added until Vim v7.3.
* | Flesh out new undoskip.vim plugin a lotTom Ryder2020-05-031-7/+43
| |
* | Add plugin undoskip.vim; switch 'undofile' on pathTom Ryder2020-05-031-0/+10
| |
* | Merge branch 'hotfix/v8.25.2' into developTom Ryder2020-05-033-20/+15
|\ \ | | | | | | | | | | | | | | | * hotfix/v8.25.2: Copy, don't reference XDG basedir lists Write v:null back out of XDG routines
| * | Copy, don't reference XDG basedir listsTom Ryder2020-05-031-3/+3
| | |
| * | Write v:null back out of XDG routinesTom Ryder2020-05-033-18/+13
| | | | | | | | | | | | | | | | | | | | | | | | I had misconfigured my test machine, and was testing the latest Vim v8.2.x when I thought I was testing v7.0.0, which misled me into thinking v:null was defined on the latter version in commit 145998c. Reverse this and just use an empty string as the sentinel value; it's not strictly correct, but it doesn't matter much to XDG.
* | | Remove trailing slashes from default XDG basedirTom Ryder2020-05-031-1/+1
| | |
* | | Use a dash rather than a three-period ellipsisTom Ryder2020-05-031-4/+4
|/ /
* | Tighten :try block around 'dictionary'/'thesaurus'Tom Ryder2020-05-031-11/+11
| |
* | Factor out iteration variables with some mapsTom Ryder2020-05-031-17/+16
| |
* | Test dir lists for emptiness to avoid force :unletTom Ryder2020-05-031-15/+19
| |
* | Use v:null in XDG-related contextsTom Ryder2020-05-032-9/+9
| | | | | | | | I hadn't realised it was supported in Vim v7.0.
* | Add handling of "after" subdirs in Vim XDG configTom Ryder2020-05-031-2/+6
| |
* | Separate cache runtime behaviour from configTom Ryder2020-05-031-13/+16
| | | | | | | | It's a little awkward to conflate them.
* | Tolerate unset iteration variablesTom Ryder2020-05-031-2/+4
| |
* | Improve "absolute path" check for XDG base dirsTom Ryder2020-05-031-1/+3
| | | | | | | | | | | | | | | | | | | | * /foo/bar -- absolute * ~/foo -- absolute * / -- Weird, but absolute * ~ -- Weird, but absolute * foo -- Not absolute * foo/bar -- Not absolute * ~foo -- Not absolute
* | Tidy and correct XDG var getenv() fallbackTom Ryder2020-05-032-11/+28
| | | | | | | | | | | | It's more correct for this function to get upset it's been passed a variable name outside the XDG basedirs spec; a more general function, in this case a backporting of getenv() from v8.1.1305.
| * Working on rewording vimrcTom Ryder2020-05-021-52/+57
|/
* Bump updated date for vimrcTom Ryder2020-05-021-1/+1
| | | | I've configured Vim itself to bump this date on each save now.
* Refine 'viminfo' option setting and commentTom Ryder2020-04-281-12/+8
|
* Fix a few spelling and punctuation errorsTom Ryder2020-04-271-9/+9
|