aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-10-30 09:20:59 +1300
committerTom Ryder <tom@sanctum.geek.nz>2019-10-30 09:21:13 +1300
commit4098bc241008a403af1e1fcc83da52bd812ab2e8 (patch)
tree5fde817656e24dc3d135061a8c471ff6bb0128fc
parentMerge branch 'release/v7.17.0' into develop (diff)
downloaddotfiles-4098bc241008a403af1e1fcc83da52bd812ab2e8.tar.gz
dotfiles-4098bc241008a403af1e1fcc83da52bd812ab2e8.zip
Improve extension histogram commands
Apply the C locale to the entire subshell, rather than just the find(1) command.
-rw-r--r--vim/vimrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 609a1331..93efe27c 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -825,7 +825,7 @@ set wildmode=list:longest,full
" giving patterns for the top 100 alphanumeric extensions for files from the
" running user’s home directory:
"
-" $ (LC_ALL=C find "$HOME" ! -type d -name '*.?*' -exec \
+" $ (LC_ALL=C ; find "$HOME" ! -type d -name '*.?*' -exec \
" sh -c 'for fn ; do
" ext=${fn##*.}
" case $ext in