aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'hotfix/v2.1.1'v2.1.1Tom Ryder2018-11-302-3/+3
|\ | | | | | | | | * hotfix/v2.1.1: Remove stray pipe from b:undo_indent setting
| * Bump VERSIONTom Ryder2018-11-301-2/+2
| |
| * Remove stray pipe from b:undo_indent settingTom Ryder2018-11-301-1/+1
|/
* Merge branch 'release/v2.1.0'v2.1.0Tom Ryder2018-11-303-45/+32
|\ | | | | | | | | | | * release/v2.1.0: Bump VERSION Remove pre-7.0 Vim handling/boilerplate
| * Bump VERSIONTom Ryder2018-11-301-2/+2
| |
| * Remove pre-7.0 Vim handling/boilerplateTom Ryder2018-11-302-43/+30
| |
| * Merge branch 'hotfix/v2.0.1' into developTom Ryder2018-11-302-2/+2
| |\ | | | | | | | | | | | | * hotfix/v2.0.1: Remove executable bit from mim.mi5
| * \ Merge branch 'release/v2.0.0' into developTom Ryder2018-11-301-2/+2
| |\ \
* | \ \ Merge branch 'hotfix/v2.0.1'v2.0.1Tom Ryder2018-11-302-2/+2
|\ \ \ \ | | |_|/ | |/| | | | | | | | | | * hotfix/v2.0.1: Remove executable bit from mim.mi5
| * | | Bump VERSIONTom Ryder2018-11-301-2/+2
| | | |
| * | | Remove executable bit from mim.mi5Tom Ryder2018-11-301-0/+0
|/ / /
* | | Merge branch 'release/v2.0.0'v2.0.0Tom Ryder2018-11-3034-208/+50
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * release/v2.0.0: Update make_target.vim to v1.2.0 Comment conditional set of <Plug>(InsertCancel) Require Vim 7 for filetype and syntax highlights Simplify a load guard for sh.vim syntax tweaks Clear away a flag after HTML indent load Remove some Vim syntax boilerplate Pare down after/indent scripts a fair bit Remove some overzealous b:undo_* setting Add missing detail to a comment Remove double-key mapping shortcuts Remove boilerplate after/ftplugin load guards Simplify after/ftplugin for C Set b:did_ftplugin flag in Vim ftplugins Adjust a vimrc comment for clarity Simplify ft=sh subtype flag clearing Add dummy function for HTML omnicompletion Clear away stock ft=mail quoting maps Wrap autocmd! clear for ft=mail in :execute Add timestamp augroup clearing to Vim ft=html Abbreviate Vim ft=html autocmd clearing Restore value of 'colorcolumn' after ft=gitcommit Wrap Vim gitcommit autocmd clear in :execute
| * | Bump VERSIONTom Ryder2018-11-301-2/+2
| |/
| * Update make_target.vim to v1.2.0Tom Ryder2018-11-301-0/+0
| |
| * Comment conditional set of <Plug>(InsertCancel)Tom Ryder2018-11-301-1/+1
| |
| * Require Vim 7 for filetype and syntax highlightsTom Ryder2018-11-303-13/+5
| | | | | | | | | | | | It's time! The rest of the vimrc can probably be allowed to load, though.
| * Simplify a load guard for sh.vim syntax tweaksTom Ryder2018-11-291-3/+2
| |
| * Clear away a flag after HTML indent loadTom Ryder2018-11-291-0/+3
| |
| * Remove some Vim syntax boilerplateTom Ryder2018-11-293-18/+0
| |
| * Pare down after/indent scripts a fair bitTom Ryder2018-11-294-34/+5
| | | | | | | | | | More overzealous undo-setting. I should wait until it becomes an actual issue.
| * Remove some overzealous b:undo_* settingTom Ryder2018-11-292-23/+0
| | | | | | | | | | It's not that these shouldn't be set, it's more that it's the wrong place to do it, especially before they've caused any actual problems.
| * Add missing detail to a commentTom Ryder2018-11-291-1/+1
| |
| * Remove double-key mapping shortcutsTom Ryder2018-11-294-14/+0
| | | | | | | | | | I never use these anyway; I'm firmly in the habit of using underscores to represent the current line these days.
| * Remove boilerplate after/ftplugin load guardsTom Ryder2018-11-2913-62/+2
| | | | | | | | | | | | | | | | I'm likely going to move away from Vim 6.0 support, at least for all of this filetype stuff. We will keep the one filetype load guard we actually need, which is the HTML one, to stop plugins like markdown.vim from loading it.
| * Simplify after/ftplugin for CTom Ryder2018-11-292-26/+3
| | | | | | | | | | Allow the cpp plugin to load this, since it's the same anyway, and push all the undo stuff together.
| * Set b:did_ftplugin flag in Vim ftpluginsTom Ryder2018-11-296-0/+6
| |
| * Adjust a vimrc comment for clarityTom Ryder2018-11-291-3/+3
| |
| * Simplify ft=sh subtype flag clearingTom Ryder2018-11-291-8/+3
| | | | | | | | | | | | These flags are also set and examined by the stock syntax for the "sh" filetype, so checking for whether they're set at runtime for the ftplugin just confuses things. Just clear them unconditionally instead.
| * Add dummy function for HTML omnicompletionTom Ryder2018-11-291-0/+5
| | | | | | | | | | | | | | The function invoked to detect the HTML type for omnicompletion is pretty big, sets a few buffer variables that it doesn't arrange to clear, and I don't use it at all. Loading a dummy function in its place seems to be better.
| * Clear away stock ft=mail quoting mapsTom Ryder2018-11-291-0/+7
| |
| * Wrap autocmd! clear for ft=mail in :executeTom Ryder2018-11-291-2/+2
| | | | | | | | See commit 0748687.
| * Add timestamp augroup clearing to Vim ft=htmlTom Ryder2018-11-291-0/+1
| |
| * Abbreviate Vim ft=html autocmd clearingTom Ryder2018-11-291-1/+1
| |
| * Restore value of 'colorcolumn' after ft=gitcommitTom Ryder2018-11-291-0/+1
| |
| * Wrap Vim gitcommit autocmd clear in :executeTom Ryder2018-11-291-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Noticed that my b:undo_ftplugin script for this filetype was only getting halfway through its work, and stopping at this command. From `:help autocmd`: > Note: The ":autocmd" command can only be followed by another command when the > '|' appears before {cmd}. This works: > :augroup mine | au! BufRead | augroup END > But this sees "augroup" as part of the defined command: > :augroup mine | au! BufRead * | augroup END > :augroup mine | au BufRead * set tw=70 | augroup END > Instead you can put the group name into the command: > :au! mine BufRead * > :au mine BufRead * set tw=70 > Or use :execute: > :augroup mine | exe "au! BufRead *" | augroup END > :augroup mine | exe "au BufRead * set tw=70" | augroup END
| * Merge branch 'release/v1.78.0' into developTom Ryder2018-11-291-2/+2
| |\ | | | | | | | | | | | | * release/v1.78.0: Bump VERSION
* | \ Merge branch 'release/v1.78.0'v1.78.0Tom Ryder2018-11-2926-130/+168
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * release/v1.78.0: Bump VERSION Correct indentation in a few vim/after scripts Move b:undo_ftplugin unsets for C inline with sets Add config file for mpv Use full "mouse" for xset(1) call in ~/.xinitrc Remove vim-tiny workaround for 'undodir' setting Define b:undo_indent for Perl buffers Set missing b:undo_indent instructions for AWK Undo shell script dialect flags from filetype.vim Code-format word in TABS.md Remove a lot of alignment spacing
| * | Bump VERSIONTom Ryder2018-11-291-2/+2
| |/
| * Correct indentation in a few vim/after scriptsTom Ryder2018-11-263-15/+15
| |
| * Move b:undo_ftplugin unsets for C inline with setsTom Ryder2018-11-262-4/+6
| |
| * Add config file for mpvTom Ryder2018-11-253-0/+8
| | | | | | | | | | | | Only one line so far, but it's a good one: don't open a new window to try to show me album art when I play FLACs, especially since it doesn't work.
| * Use full "mouse" for xset(1) call in ~/.xinitrcTom Ryder2018-11-251-1/+1
| | | | | | | | | | | | | | From xset(1): > The m option controls the mouse parameters; it may be abbreviated to > 'm'.
| * Remove vim-tiny workaround for 'undodir' settingTom Ryder2018-11-251-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Commit 575f00d changed the setting for 'undodir' and similar path-based settings to set the values conditionally based on the operating system being used, while still setting them sensibly for "tiny" builds of Vim on Unix, which skips all :if blocks. This isn't necessary for 'undodir', because a tiny build of Vim won't have the persistent_undo feature required for the option to exist at all, so we can make this particular setting a little less awkward. The 'backupdir' and 'directory' settings, however, need to keep their existing structure to remain interoperable.
| * Define b:undo_indent for Perl buffersTom Ryder2018-11-252-0/+11
| | | | | | | | This should probably be pushed upstream.
| * Set missing b:undo_indent instructions for AWKTom Ryder2018-11-251-0/+7
| | | | | | | | | | Switching filetypes from "awk" to another type doesn't load the indentation of the new type, due to the absence of this setting.
| * Undo shell script dialect flags from filetype.vimTom Ryder2018-11-251-0/+10
| | | | | | | | | | These local buffer variable flags weren't being cleared correctly on a filetype change.
| * Merge branch 'hotfix/v1.77.1' into developTom Ryder2018-11-242-4/+4
| |\ | | | | | | | | | | | | | | | * hotfix/v1.77.1: Bump VERSION Allow equal bounds in rndi(1df)
| * | Code-format word in TABS.mdTom Ryder2018-11-241-2/+2
| | |
| * | Remove a lot of alignment spacingTom Ryder2018-11-2311-104/+104
| | |
| * | Merge branch 'release/v1.77.0' into developTom Ryder2018-11-231-2/+2
| |\ \ | | | | | | | | | | | | | | | | * release/v1.77.0: Bump VERSION