From 0cbe4b4db074e805b2699e9a3222b336cbd9d742 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 25 Apr 2021 22:50:42 +1200 Subject: Remove tag from HTML timestamp prefix --- vim/autoload/html/timestamp.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/autoload/html/timestamp.vim b/vim/autoload/html/timestamp.vim index 6d525afb..8f250710 100644 --- a/vim/autoload/html/timestamp.vim +++ b/vim/autoload/html/timestamp.vim @@ -34,7 +34,7 @@ function! s:Timestamp(time) abort endfunction " Define timestamp prefix string -let s:prefix = 'Last updated: ' +let s:prefix = 'Last updated: ' " Define pattern to match date timestamps; no ZALGO, please let s:pattern = '\m\C' -- cgit v1.2.3 From 6f91b2705e848416c5735539a4af383e6aceaf0a Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Mon, 10 May 2021 13:28:35 +1200 Subject: Make corrections for ShellCheck v0.7.2 --- bash/bash_completion.d/path.bash | 1 + lint/bash.sh | 2 +- lint/ksh.sh | 4 ++-- lint/sh.sh | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/bash/bash_completion.d/path.bash b/bash/bash_completion.d/path.bash index 9224506a..9234f132 100644 --- a/bash/bash_completion.d/path.bash +++ b/bash/bash_completion.d/path.bash @@ -62,6 +62,7 @@ _path() { fi # Break PATH into parts + declare -a paths IFS=: read -a paths -d '' -r \ < <(printf '%s\0' "$PATH") diff --git a/lint/bash.sh b/lint/bash.sh index 13754a3f..2b6342ae 100644 --- a/lint/bash.sh +++ b/lint/bash.sh @@ -5,4 +5,4 @@ set \ bash/bash_profile \ bash/bashrc \ bash/bashrc.d/*.bash -shellcheck -e SC1090 -s bash -- "$@" || exit +shellcheck -e SC1090 -e SC1091 -s bash -- "$@" || exit diff --git a/lint/ksh.sh b/lint/ksh.sh index 117909b3..164c4672 100644 --- a/lint/ksh.sh +++ b/lint/ksh.sh @@ -1,5 +1,5 @@ set \ ksh/kshrc \ ksh/kshrc.d/*.ksh -shellcheck -e SC1090 -s ksh -- "$@" || exit -shellcheck -e SC1090 -s sh -- ksh/shrc.d/ksh.sh || exit +shellcheck -e SC1090 -e SC1091 -s ksh -- "$@" || exit +shellcheck -e SC1090 -e SC1091 -s sh -- ksh/shrc.d/ksh.sh || exit diff --git a/lint/sh.sh b/lint/sh.sh index 5884a1ed..e15b5504 100644 --- a/lint/sh.sh +++ b/lint/sh.sh @@ -4,4 +4,4 @@ set \ sh/shrc \ */profile.d/*.sh \ */shrc.d/*.sh -shellcheck -e SC1090 -s sh -- "$@" || exit +shellcheck -e SC1090 -e SC1091 -s sh -- "$@" || exit -- cgit v1.2.3 From e1026baf9dd17ecd7291d0fef40fe4e7aa4ab673 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Mon, 10 May 2021 13:28:47 +1200 Subject: Run Perl::Tidy over urxvt/ext/select.pl --- urxvt/ext/select.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/urxvt/ext/select.pl b/urxvt/ext/select.pl index 90b13960..589c7464 100644 --- a/urxvt/ext/select.pl +++ b/urxvt/ext/select.pl @@ -68,7 +68,7 @@ sub on_sel_extend { MATCH: for ( sort { ## no critic (ProhibitReverseSortBlock) - $a->[1] <=> $b->[1] + $a->[1] <=> $b->[1] or $b->[0] <=> $a->[0] } @matches ) -- cgit v1.2.3 From 371db292961ee09e3eff174c58941de5aea74214 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Mon, 10 May 2021 13:46:30 +1200 Subject: Bump VERSION --- VERSION | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 531c73f7..39293bf0 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1,2 @@ -tejr dotfiles v11.3.0 -Fri, 23 Apr 2021 09:24:39 +0000 +tejr dotfiles v11.4.0 +Mon, 10 May 2021 01:46:30 +0000 -- cgit v1.2.3