aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-03-22 09:25:34 +1300
committerTom Ryder <tom@sanctum.geek.nz>2018-03-22 09:25:34 +1300
commit373f8dd263f114ccb36da82ce4825f6afaff1225 (patch)
tree040f829680a9e6485e5a26c3c3eea8e9a5c8511f
parentMerge branch 'hotfix/v0.30.1' (diff)
parentRebuild dotfiles(7) manual page from README (diff)
downloaddotfiles-373f8dd263f114ccb36da82ce4825f6afaff1225.tar.gz
dotfiles-373f8dd263f114ccb36da82ce4825f6afaff1225.zip
Merge branch 'release/v0.31.0'v0.31.0
* release/v0.31.0: Rebuild dotfiles(7) manual page from README Bump VERSION Further soften magic numbers Perl::Critic rule Prompt for message deletion in Mutt Silence errors from missing mesg(1)
-rw-r--r--VERSION4
-rw-r--r--man/man7/dotfiles.7df2
-rw-r--r--mutt/muttrc2
-rw-r--r--perlcritic/perlcriticrc7
-rw-r--r--sh/shrc2
5 files changed, 9 insertions, 8 deletions
diff --git a/VERSION b/VERSION
index a44c33a9..7f581842 100644
--- a/VERSION
+++ b/VERSION
@@ -1,2 +1,2 @@
-tejr dotfiles v0.30.1
-Mon Feb 19 04:49:10 UTC 2018
+tejr dotfiles v0.31.0
+Wed Mar 21 20:23:37 UTC 2018
diff --git a/man/man7/dotfiles.7df b/man/man7/dotfiles.7df
index 6cf3fdcb..046e35db 100644
--- a/man/man7/dotfiles.7df
+++ b/man/man7/dotfiles.7df
@@ -515,7 +515,7 @@ To install the configuration where Neovim will use it, do this:
.nf
\f[C]
$\ nvd=${XDG_CONFIG_HOME:\-"$HOME"/.config}/nvim
-$\ make\ install\-vim\ VIMRC=$nvd/init.vim\ VIMDIR=$nvd
+$\ make\ install\-vim\ VIMRC="$nvd"/init.vim\ VIMDIR="$nvd"
\f[]
.fi
.PP
diff --git a/mutt/muttrc b/mutt/muttrc
index 953ab418..41e8a75c 100644
--- a/mutt/muttrc
+++ b/mutt/muttrc
@@ -35,7 +35,7 @@ bind editor <Tab> complete-query
bind editor ^T complete
# Files
-set delete = yes
+set delete = ask-yes
set move = no
# Flags
diff --git a/perlcritic/perlcriticrc b/perlcritic/perlcriticrc
index bc8453f8..91bc1540 100644
--- a/perlcritic/perlcriticrc
+++ b/perlcritic/perlcriticrc
@@ -17,7 +17,8 @@ add_exceptions = inet4 inet6 ipv4 ipv6
# This one causes more trouble than it's worth, too
[-Documentation::RequirePODUseEncodingUTF8]
-# Soften this policy a bit; tolerate all the single-digit integers as literals,
-# and also three powers of 10 (for percentages, milliseconds etc)
+# Soften this rather harsh policy a fair bit; tolerate negative one, all the
+# single-digit integers as literals, three powers of 10 (for percentages,
+# milliseconds etc), and 1900 (for localtime)
[ValuesAndExpressions::ProhibitMagicNumbers]
-allowed_values = 0..9 10 100 1000
+allowed_values = -1 0..9 10 100 1000 1900
diff --git a/sh/shrc b/sh/shrc
index 33c55e8f..63026e69 100644
--- a/sh/shrc
+++ b/sh/shrc
@@ -1,5 +1,5 @@
# Don't let anyone write(1) to my terminal
-command -p mesg n
+command -p mesg n 2>/dev/null
# Turn off flow control and control character echo
command -p stty -ixon -ctlecho 2>/dev/null