aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2021-01-15 14:32:37 +1300
committerTom Ryder <tom@sanctum.geek.nz>2021-01-15 14:32:37 +1300
commit22723f1ac9141880070911e26d297df4f65679fc (patch)
tree6b1e2651e3e7b33832e9ce528ed7ac12736d84ab
parentMerge branch 'release/v10.22.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-22723f1ac9141880070911e26d297df4f65679fc.tar.gz
dotfiles-22723f1ac9141880070911e26d297df4f65679fc.zip
Merge branch 'release/v10.23.0'v10.23.0
* release/v10.23.0: Ignore false-positives from double-sigil Critic Adjust single-character escapes in tmux config
-rw-r--r--VERSION4
-rw-r--r--perlcritic/perlcriticrc5
-rw-r--r--tmux/tmux.conf2
3 files changed, 8 insertions, 3 deletions
diff --git a/VERSION b/VERSION
index c470af2f..6ca3dee5 100644
--- a/VERSION
+++ b/VERSION
@@ -1,2 +1,2 @@
-tejr dotfiles v10.22.0
-Sat, 02 Jan 2021 00:12:16 +0000
+tejr dotfiles v10.23.0
+Fri, 15 Jan 2021 01:32:33 +0000
diff --git a/perlcritic/perlcriticrc b/perlcritic/perlcriticrc
index 0bd59c98..37f033fe 100644
--- a/perlcritic/perlcriticrc
+++ b/perlcritic/perlcriticrc
@@ -20,6 +20,11 @@ add_exceptions = inet4 inet6 ipv4 ipv6
# Cool story, bro
[-Editor::RequireEmacsFileVariables]
+# Postfix dereferencing like $foo->@* causes false positives for this policy,
+# a known bug; it's not fixed yet, so we'll just block this policy in the
+# meantime: <https://github.com/Perl-Critic/Perl-Critic/issues/578>
+[-References::ProhibitDoubleSigils]
+
# 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), 60 (for angles and clocks), and 1900 (for localtime)
diff --git a/tmux/tmux.conf b/tmux/tmux.conf
index 05e21f81..4410fe0e 100644
--- a/tmux/tmux.conf
+++ b/tmux/tmux.conf
@@ -28,7 +28,7 @@ bind-key C-a last-window
# Quick ways to kill single windows and the whole server
bind-key '/' confirm-before 'kill-window'
-bind-key '\' confirm-before 'kill-server'
+bind-key "\\" confirm-before 'kill-server'
# Slightly more intuitive way to split windows
bind-key '_' split-window -v