From a9628387c54d35b3368c583170b7df0d32345296 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 13 Jun 2019 14:48:22 +1200 Subject: Update vim-cursorline-current to v2.1.0 --- vim/bundle/cursorline_current | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/bundle/cursorline_current b/vim/bundle/cursorline_current index a4261e15..39dca4f5 160000 --- a/vim/bundle/cursorline_current +++ b/vim/bundle/cursorline_current @@ -1 +1 @@ -Subproject commit a4261e155c850d4cf8a2624b7a155d69b1bd0421 +Subproject commit 39dca4f5c795766837dfdc1d868b2cd365c1f7f1 -- cgit v1.2.3 From dc69bcc66466780448b69d9de711a42934025a0d Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 13 Jun 2019 19:09:42 +1200 Subject: Remove leading and trailing comment lines --- vim/vimrc | 2 -- 1 file changed, 2 deletions(-) diff --git a/vim/vimrc b/vim/vimrc index 57a92a11..39df726f 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -1,4 +1,3 @@ -" " Tom Ryder (tejr)'s Literate Vimrc " ================================= " @@ -1519,4 +1518,3 @@ inoreabbrev THere There " > authors...as soon as this is perceived the book should be thrown away, " > for time is precious. " > -- Schopenhauer -" -- cgit v1.2.3 From 50c456611b35bc026ece645ff95e0aa74e73e88f Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 13 Jun 2019 19:15:23 +1200 Subject: Refactor mkdir() call --- vim/vimrc | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/vim/vimrc b/vim/vimrc index 39df726f..a3753493 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -242,10 +242,12 @@ augroup END " candidates, and specify that there must be only one argument, which we'll " provide as a quoted parameter to the function. " -function! s:Establish(path) abort - let path = expand(a:path) - if !isdirectory(path) && exists('*mkdir') - call mkdir(path, 'p', 0700) +function! s:Establish(name) abort + let name = expand(a:name) + let path = 'p' + let prot = 0700 + if !isdirectory(name) && exists('*mkdir') + call mkdir(name, path, prot) endif endfunction command! -bar -complete=dir -nargs=1 Establish -- cgit v1.2.3 From fdc778f9d1aa54a5718595a1b5559d95368a06a9 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 14 Jun 2019 00:06:35 +1200 Subject: Update vim-vertical-region to v1.3.1 --- vim/bundle/vertical_region | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/bundle/vertical_region b/vim/bundle/vertical_region index 8d0f5186..39fbaf77 160000 --- a/vim/bundle/vertical_region +++ b/vim/bundle/vertical_region @@ -1 +1 @@ -Subproject commit 8d0f51861cace12c36e3074556f9043c3bd72a0b +Subproject commit 39fbaf778fb7d1417a0ee9ad91f01a449fca8d6d -- cgit v1.2.3 From d506a6c502faaa24303e1be93a6f7ef88722183d Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 14 Jun 2019 00:07:42 +1200 Subject: Revert "Use shorter :map commands for diff/mail... This reverts commit bcad400. It breaks visual mode and operator mode operations, which should have been obvious. --- vim/after/ftplugin/diff.vim | 24 ++++++++++++++++-------- vim/after/ftplugin/mail.vim | 24 ++++++++++++++++-------- 2 files changed, 32 insertions(+), 16 deletions(-) diff --git a/vim/after/ftplugin/diff.vim b/vim/after/ftplugin/diff.vim index 8c3d5b1d..f9f6c4b3 100644 --- a/vim/after/ftplugin/diff.vim +++ b/vim/after/ftplugin/diff.vim @@ -4,16 +4,24 @@ if exists('no_plugin_maps') || exists('no_diff_maps') endif " Maps using autoloaded function for quoted block movement -noremap [ +nnoremap [ \ :call diff#MoveBlock(v:count1, 1, 0) -sunmap [ -noremap ] +nnoremap ] \ :call diff#MoveBlock(v:count1, 0, 0) -sunmap ] -let b:undo_ftplugin .= '|smap ] ' - \ . '|unmap ]' - \ . '|smap ] ' - \ . '|unmap ]' +onoremap [ + \ :call diff#MoveBlock(v:count1, 1, 0) +onoremap ] + \ :call diff#MoveBlock(v:count1, 0, 0) +xnoremap [ + \ :call diff#MoveBlock(v:count1, 1, 1) +xnoremap ] + \ :call diff#MoveBlock(v:count1, 0, 1) +let b:undo_ftplugin .= '|nunmap [' + \ . '|nunmap ]' + \ . '|ounmap [' + \ . '|ounmap ]' + \ . '|xunmap [' + \ . '|xunmap ]' " Set mappings for diff pruning plugin nmap p diff --git a/vim/after/ftplugin/mail.vim b/vim/after/ftplugin/mail.vim index 85b7affd..cfb738a1 100644 --- a/vim/after/ftplugin/mail.vim +++ b/vim/after/ftplugin/mail.vim @@ -114,13 +114,21 @@ let b:undo_ftplugin .= '|nunmap Q' \ . '|xunmap Q' " Maps using autoloaded function for quoted paragraph movement -noremap [ +nnoremap [ \ :call mail#NewBlank(v:count1, 1, 0) -sunmap [ -noremap ] +nnoremap ] \ :call mail#NewBlank(v:count1, 0, 0) -sunmap ] -let b:undo_ftplugin .= '|smap ] ' - \ . '|unmap ]' - \ . '|smap ] ' - \ . '|unmap ]' +onoremap [ + \ :call mail#NewBlank(v:count1, 1, 0) +onoremap ] + \ :call mail#NewBlank(v:count1, 0, 0) +xnoremap [ + \ :call mail#NewBlank(v:count1, 1, 1) +xnoremap ] + \ :call mail#NewBlank(v:count1, 0, 1) +let b:undo_ftplugin .= '|nunmap [' + \ . '|nunmap ]' + \ . '|ounmap [' + \ . '|ounmap ]' + \ . '|xunmap [' + \ . '|xunmap ]' -- cgit v1.2.3 From 92a012b81591cfb41009984970af2c4ae27bf809 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 14 Jun 2019 00:10:37 +1200 Subject: Consolidate 'backup' and 'backupskip' sections --- vim/vimrc | 39 ++++++++++++++++++--------------------- 1 file changed, 18 insertions(+), 21 deletions(-) diff --git a/vim/vimrc b/vim/vimrc index a3753493..03892685 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -296,14 +296,11 @@ set history=10000 " Enable automatic backups of most file buffers. In practice, I don't need " these backups very much if I'm using version control sensibly, but they have -" still saved my bacon a few times. We're not done here yet, though; there's -" the important matter of where to *put* those backups. +" still saved my bacon a few times. " -set backup - -" We'll try to keep the aforementioned backup files in a dedicated cache -" directory, to stop them popping up next to the file to which they -" correspond, and getting committed to version control. +" We'll try to keep the backup files in a dedicated cache directory, to stop +" them popping up next to the file to which they correspond, and getting +" committed to version control. " " If Vim is new enough, we'll add two trailing slashes to the path we're " inserting, which prompts Vim to incorporate the full escaped path of the @@ -324,6 +321,7 @@ set backup " It's all so awkward. Surely separate options named something like " 'backupfullname', 'swapfilefullname' would have been clearer. " +set backup Establish $MYVIM/cache/backup if has('patch-8.1.251') set backupdir^=$MYVIM/cache/backup// @@ -331,20 +329,6 @@ else set backupdir^=$MYVIM/cache/backup endif -" Prior to v8.1.1519, Vim didn't check patterns added to 'backupskip' for -" uniqueness, so adding the same path repeatedly resulted in duplicate strings -" in the value. This was due to the absence of the P_NODUP flag for the -" option's definition in src/option.c in the Vim source code. If we're using -" a version older than v8.1.1519, we'll need to explicitly reset 'backupskip' -" to its default value, so that reloading this file doesn't stack up multiple -" copies of any added paths. -" -" -" -if !has('patch-8.1.1519') - set backupskip& -endif - " Files in certain directories on Unix-compatible filesystems should not be " backed up, for security reasons. This is particularly important if editing " temporary files created by sudoedit(8). On Unix-like systems, we here add @@ -355,7 +339,20 @@ endif " * /usr/tmp: Hard-coded path for sudoedit(8) [1/2] " * /var/tmp: Hard-coded path for sudoedit(8) [2/2] " +" Prior to v8.1.1519, Vim didn't check patterns added to 'backupskip' for +" uniqueness, so adding the same path repeatedly resulted in duplicate strings +" in the value. This was due to the absence of the P_NODUP flag for the +" option's definition in src/option.c in the Vim source code. If we're using +" a version older than v8.1.1519, we'll need to explicitly reset 'backupskip' +" to its default value before adding patterns to it, so that reloading this +" file doesn't stack up multiple copies of any added paths. +" +" +" if has('unix') + if !has('patch-8.1.1519') + set backupskip& + endif set backupskip^=/dev/shm/*,/usr/tmp/*,/var/tmp/* endif -- cgit v1.2.3 From 059f1566c5e18b064c0a3ef16163e007941f5e8f Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 14 Jun 2019 00:10:51 +1200 Subject: Consolidate +persistent_undo section --- vim/vimrc | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/vim/vimrc b/vim/vimrc index 03892685..6a7e6425 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -370,25 +370,19 @@ set directory^=$MYVIM/cache/swap// " directory, so that the u/:undo and CTRL-R/:redo commands will work between " Vim invocations. " +" The 'undodir' option has the same structure as 'backupdir' and 'directory'; +" if we have a user runtime directory, create a sub-subdirectory within it +" dedicated to the undo files cache. Note also the trailing double-slash as +" a signal to Vim to use the full path of the original file in its undo file +" cache's name. +" " Support for these persistent undo file caches was not released until v7.3.0, " so we need to check for the feature's presence before we enable it. " if has('persistent_undo') - - " This has the same structure as 'backupdir' and 'directory'; if we have - " a user runtime directory, create a sub-subdirectory within it dedicated to - " the undo files cache. Note also the trailing double-slash as a signal to - " Vim to use the full path of the original file in its undo file cache's - " name. - " Establish $MYVIM/cache/undo - set undodir^=$MYVIM/cache/undo// - - " Turn the persistent undo features on, now that we hopefully have a cache - " directory configured to collect them. - " set undofile - + set undodir^=$MYVIM/cache/undo// endif " For word completion in insert mode with CTRL-X CTRL-K, or if 'complete' -- cgit v1.2.3 From c24d8c8ab26fead8ae0bccef7cf348c13544e01a Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 14 Jun 2019 00:11:26 +1200 Subject: Consolidate C option resets --- vim/vimrc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/vim/vimrc b/vim/vimrc index 6a7e6425..fdbb77dc 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -449,14 +449,13 @@ endif " like. The defaults for these options no longer make sense, and so we blank " them, compelling filetype plugins to set them as they need instead. " -set comments= commentstring= define= include= - " The default value for the 'path' option is similar, in that it has an aged " default; this option specifies directories in which project files and " includes can be unearthed by navigation commands like 'gf'. Specifically, " its default value comprises /usr/include, which is another C default. Let's " get rid of that, too. " +set comments= commentstring= define= include= set path-=/usr/include " Next, we'll adjust the global indentation settings. In general and as -- cgit v1.2.3 From 5d8a2e340b034d819befcd28385d27abbf077b74 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 14 Jun 2019 01:07:34 +1200 Subject: Avoid double expansion of :Establish args --- vim/vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/vimrc b/vim/vimrc index fdbb77dc..bff8e241 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -251,7 +251,7 @@ function! s:Establish(name) abort endif endfunction command! -bar -complete=dir -nargs=1 Establish - \ call s:Establish() + \ call s:Establish() " Now that we have a clean means to create directories if they don't already " exist, let's apply it for the first time to the user runtime directory. -- cgit v1.2.3 From 6aa7e42b6e75094afed93151f5f6678f24e56b3f Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 14 Jun 2019 01:07:51 +1200 Subject: Amend comment on :Establish --- vim/vimrc | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/vim/vimrc b/vim/vimrc index bff8e241..c8711567 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -221,15 +221,12 @@ augroup vimrc augroup END " We're going to be creating a few directories now. The code to do so in -" a compatible way is surprisingly verbose, because as well as expanding what -" we were provided as an argument, the :help for mkdir() indicates we need to -" check the function is actually available before using it. -" -" We also need to check whether the directory already exists, even if we -" specify the special 'p' value for its optional {path} argument. This is -" because until v8.0.1708, mkdir() raises an error if the directory to be -" created already exists, even with a {path} of 'p', where the analogous -" `mkdir` shell command does not do so with its -p option included. +" a compatible way is verbose, mostly because we need to check whether the +" directory already exists, even though we're specifying the special 'p' value +" for its optional {path} argument. This is because until v8.0.1708, mkdir() +" raises an error if the directory to be created already exists, even with +" a {path} of 'p', where the analogous `mkdir` shell command does not do so +" with its -p option included. " " " @@ -237,7 +234,7 @@ augroup END " hide it behind a user command :Establish. We'll lock down all the " directories that we create with restrictive permissions, too. Who knows " what secrets are in your file buffers? - +" " We set the command's tab completion to provide directory names as " candidates, and specify that there must be only one argument, which we'll " provide as a quoted parameter to the function. -- cgit v1.2.3 From 0926c82e6c1e2fd79e778a6fdda9c71d0873fc28 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 14 Jun 2019 01:24:10 +1200 Subject: Spell checking (US English) and reformatting --- vim/vimrc | 82 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 40 insertions(+), 42 deletions(-) diff --git a/vim/vimrc b/vim/vimrc index c8711567..c8a32ca2 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -54,7 +54,7 @@ scriptencoding utf-8 " " We'll use the path nominated in the MYVIM variable as the root of our " 'backupdir', 'directory', 'undodir', and 'viminfofile' caches, and anywhere -" else we need a sensible writeable location for Vim-related files. Having it +" else we need a sensible writable location for Vim-related files. Having it " available as an environment variable makes assignments with :set and " escaping much more convenient, without requiring awkward :execute wrappers. " @@ -76,13 +76,14 @@ scriptencoding utf-8 " The pattern required for the split breaks down like this: " " \\ -- Literal backslash -" \@\r\n]' set thesaurus^=$MYVIM/ref/thesaurus.txt endif -" Next, we'll modernise a little in adjusting some options with old +" Next, we'll modernize a little in adjusting some options with old " language-specific defaults. " " Traditional vi was often used for development in the C programming language. @@ -580,17 +581,17 @@ set foldlevelstart=99 " either of those flags here. " If a line is already longer than 'textwidth' would otherwise limit when -" editing of that line begins in insert mode, don't suddenly automatically wrap -" it; I'll break it apart myself with a command like 'gq'. This doesn't seem to -" stop paragraph reformatting with 'a', if that's set. +" editing of that line begins in insert mode, don't suddenly automatically +" wrap it; I'll break it apart myself with a command like 'gq'. This doesn't +" seem to stop paragraph reformatting with 'a', if that's set. " set formatoptions+=l " Don't wrap a line in such a way that a single-letter word like "I" or "a" is " at the end of it. Typographically, as far as I can tell, this seems to be " a stylistic preference rather than a rule, rather like avoiding "widow" and -" "orphan" lines in typesetting. I think it generally looks better to have the -" short word start the line, so we'll switch it on. +" "orphan" lines in typesetting. I think it generally looks better to have +" the short word start the line, so we'll switch it on. " set formatoptions+=1 @@ -640,7 +641,7 @@ set cpoptions+=J " two words in "Mr. Moolenaar" should never be split apart, preventing " confusion on the reader's part lest the word "Mr." look too much like the " end of a sentence, and also preserving the semantics of that same period for -" subsequent reformats; its single-space won't get lost. +" subsequent reformatting; its single-space won't get lost. " " So, getting back to our 'formatoptions' settings, that is what the 'p' flag " does. I wrote the patch that added it, after becoming envious of an @@ -678,7 +679,7 @@ endif " However, the option really is required for batch operations performed with " commands like :argdo or :bufdo, because Vim won't otherwise tolerate unsaved " changes to a litany of buffers that are not displayed in any window. After -" I started using such command maps a bit more often, I realised I finally had +" I started using such command maps a bit more often, I realized I finally had " a reason to turn this on permanently. " set hidden @@ -695,16 +696,13 @@ nohlsearch " including scrolling the screen to show the first such match if necessary. " This can be somewhat jarring, particularly when the cursor ends up scrolling " a long way from home in a large file, but I think the benefits of being able -" to see instances of what I'm trying to match as I type the pattern do outweigh -" that discomfort. +" to see instances of what I'm trying to match as I type the pattern do +" outweigh that discomfort. " set incsearch " Don't waste cycles and bandwidth redrawing the screen during execution of -" aggregate commands in e.g. macros. I think this does amount to the -" occasional :redraw needing to be in a script, but it's not too bad, and last -" I checked it really does speed things up, especially for operations on -" really big data sets. +" macro recordings and scripts. " set lazyredraw @@ -745,9 +743,9 @@ endif " " I think that modelines are Vim's worst misfeature, and that 'nomodeline' " should be the default. It's enabled pretty bad security vulnerabilities -" over the years, and it's a lot more effective to use filetype detection, other -" automatic command hooks, or methods like .editorconfig to set variables -" specifically for a buffer or project. +" over the years, and it's a lot more effective to use filetype detection, +" other automatic command hooks, or methods like .editorconfig to set +" variables specifically for a buffer or project. " set nomodeline @@ -771,8 +769,8 @@ set noruler " more complex and longer-term projects like books, but they don't play " together well with plugins and filetype plugins. Restoring the same " settings from both reloaded plugins and from the session causes screeds of -" errors. Adjusting session behaviour to stop it trying to restore the sorts -" of settings that plugins manage makes them useable again. +" errors. Adjusting session behavior to stop it trying to restore the sorts +" of settings that plugins manage makes them usable again. " set sessionoptions-=localoptions " No buffer options or mappings set sessionoptions-=options " No global options or mappings @@ -891,7 +889,7 @@ set wildmode=list:longest,full " please do so, and send it to me at to have yours put " in here instead, with appropriate credit. Don't forget to handle more than " ARG_MAX files, include filenames with newlines, and that the -z or -0 null -" separator extensions are not standardised in POSIX. +" separator extensions are not standardized in POSIX. " " " @@ -933,38 +931,38 @@ endif " " " For several months in 2018, as an experiment, I tried using terminals with -" no colour at all, imitating a phenomenally productive BSD purist co-worker -" who abhorred colour in any form on his terminals. He only drank black +" no color at all, imitating a phenomenally productive BSD purist co-worker +" who abhorred color in any form on his terminals. He only drank black " coffee, too. If you're reading this: Hello, bdh! " " That experiment was instructive and interesting, and I found I had been -" leaning on colour information in some surprising ways. However, some months -" later, I found I still missed my colours, and so I went back to my +" leaning on color information in some surprising ways. However, some months +" later, I found I still missed my colors, and so I went back to my " Kodachrome roots, and didn't pine at all for that monochrome world. " " The thing I most like about syntax highlighting is detecting runaway " strings, which generally works in even the most threadbare language syntax " highlighting definitions. I kept missing such errors when I didn't have the -" colours. I don't have high standards for it otherwise, except maybe for +" colors. I don't have high standards for it otherwise, except maybe for " shell script. " if !exists('syntax_on') syntax enable endif -" We'll have Vim try to use my 'sahara' fork of the 'desert256' colour scheme, +" We'll have Vim try to use my 'sahara' fork of the 'desert256' color scheme, " and if it manages to do so without errors, turn on the 'cursorline' feature, -" since the scheme configures it and 'cursorcolumn' to be a very dark grey +" since the scheme configures it and 'cursorcolumn' to be a very dark gray " that doesn't stand out too much against a black background. Aside from the " aforementioned experiment with monochrome terminals, I exclusively use dark " backgrounds. " -" If we fail to load the colour scheme, for whatever reason, suppress the +" If we fail to load the color scheme, for whatever reason, suppress the " error, and reset the syntax highlighting, 'background', and 'cursorline' for -" dark-background default colours. I used it for years; it looks and works +" dark-background default colors. I used it for years; it looks and works " just fine. " -" There's also a very simple grayscale colour scheme I occasionally use +" There's also a very simple grayscale color scheme I occasionally use " instead called 'juvenile', which is included as a Git submodule with this " dotfiles distribution. " @@ -996,9 +994,9 @@ endtry " extent possible, and avoid "doing more" in insert mode besides merely " inserting text as it's typed. " -" * Avoid chording with Ctrl in favour of leader keys. +" * Avoid key chords with Ctrl in favor of leader keys. " -" * Never use Alt/Meta chording; the terminal support for them is just too +" * Never use Alt/Meta key chords; the terminal support for them is just too " confusing and flaky. " " * Don't suppress display of mapped commands for no reason; it's OK to show @@ -1012,7 +1010,7 @@ endtry " many of these. " -" I find the space bar's default behaviour in normal mode of moving right one +" I find the space bar's default behavior in normal mode of moving right one " character to be useless. Instead, I remap it to be a lazy way of paging " through the argument list buffers, scrolling a page until the last line of " the buffer is visible, and then moving to the :next buffer. @@ -1022,7 +1020,7 @@ endtry nnoremap \ line('w$') < line('$') ? "\" : ":\next\" -" I hate CTRL-C's default insert mode behaviour. It ends the insert session +" I hate CTRL-C's default insert mode behavior. It ends the insert session " without firing the InsertLeave event for automatic command hooks. Why would " anyone want that? It breaks plugins that hinge on mirrored functionality " between the InsertEnter and InsertLeave events, and doesn't otherwise differ @@ -1105,7 +1103,7 @@ imap (DigraphSearch) " a lot of redrawing. " " For each of these, we end the mapping with a CTRL-L in normal mode, thereby -" extending rather than replacing Vim's normal behaviour. +" extending rather than replacing Vim's normal behavior. " nnoremap \ :nohlsearch @@ -1502,7 +1500,7 @@ inoreabbrev THere There " Here endeth the literate vimrc. " -" > Consequently, it is soon recognised that they write for the sake of +" > Consequently, it is soon recognized that they write for the sake of " > filling up the paper, and this is the case sometimes with the best " > authors...as soon as this is perceived the book should be thrown away, " > for time is precious. -- cgit v1.2.3 From e5290f5e0a575fe644722267759f5119db62858d Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 14 Jun 2019 01:26:25 +1200 Subject: Use arrows to indicate regex parts --- vim/vimrc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/vim/vimrc b/vim/vimrc index c8a32ca2..ff46a151 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -75,13 +75,13 @@ scriptencoding utf-8 " " The pattern required for the split breaks down like this: " -" \\ -- Literal backslash -" \@ Date: Fri, 14 Jun 2019 01:26:44 +1200 Subject: Bump VERSION --- VERSION | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 9d8ecbdc..fee99ce1 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1,2 @@ -tejr dotfiles v5.45.0 -Thu Jun 13 02:13:50 UTC 2019 +tejr dotfiles v5.46.0 +Thu Jun 13 13:26:44 UTC 2019 -- cgit v1.2.3