From 35a4ed5b39991c86db34f61d737d8eb0a408da72 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Tue, 30 Oct 2018 10:44:23 +1300 Subject: Add a new issue --- ISSUES.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ISSUES.md b/ISSUES.md index 282d8cdc..3ead2d0d 100644 --- a/ISSUES.md +++ b/ISSUES.md @@ -21,3 +21,8 @@ Known issues * Need to decide whether I care about XDG, and implement it if I do * Need to decide whether I'm testing the shell snippets for MPD, Keychain etc, and if so how. +* The custom shell functions really should be documented, but it's not clear to + me exactly where this should happen, because the commands' availability + depends on which shell you're using; the `sd` function isn't available when + you're not using Bash. Maybe I should try to extend `help` without breaking + it? -- cgit v1.2.3 From 0ff0ade8754a786983dbff141e83951ef763490e Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Mon, 12 Nov 2018 11:36:41 +1300 Subject: Remove trailing quote from edda(1df) manual --- man/man1/edda.1df | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man/man1/edda.1df b/man/man1/edda.1df index 0f968d8a..0daef171 100644 --- a/man/man1/edda.1df +++ b/man/man1/edda.1df @@ -20,7 +20,7 @@ each of the files given as arguments. Example: .br Let one know thy secret, but never a second; .br - If three, a thousand shall know." + If three, a thousand shall know. .P -- Poetic Edda, Hávamál, 63 .br -- cgit v1.2.3 From ff5f3d55442d82381adbd98397724e5b04cfd9d7 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Wed, 14 Nov 2018 23:21:30 +1300 Subject: Add missing left angle bracket to filetype undo --- vim/ftplugin/tmux.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/ftplugin/tmux.vim b/vim/ftplugin/tmux.vim index ecbd3e85..350bc976 100644 --- a/vim/ftplugin/tmux.vim +++ b/vim/ftplugin/tmux.vim @@ -6,4 +6,4 @@ endif " Set comment formats setlocal comments=:# setlocal formatoptions+=or -let b:undo_ftplugin = 'setlocal comments< formatoptions' +let b:undo_ftplugin = 'setlocal comments< formatoptions<' -- cgit v1.2.3 From c8d8ae55b98503bc0c95d5ad1809a93ab92494e9 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 16 Nov 2018 12:46:44 +1300 Subject: Add Bash settings to Vim readline highlighting This includes the creation of a hitherto-unneeded Makefile target install-vim-syntax. --- Makefile | 8 +++++++- vim/after/syntax/readline.vim | 3 +++ vim/syntax/readline.vim | 2 ++ 3 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 vim/after/syntax/readline.vim create mode 100644 vim/syntax/readline.vim diff --git a/Makefile b/Makefile index 833f4ac9..0731df0b 100644 --- a/Makefile +++ b/Makefile @@ -53,6 +53,7 @@ install-vim-gui-config \ install-vim-indent \ install-vim-plugin \ + install-vim-syntax \ install-vint \ install-wget \ install-x \ @@ -506,7 +507,8 @@ install-vim: install-vim-after \ install-vim-ftdetect \ install-vim-ftplugin \ install-vim-indent \ - install-vim-plugin + install-vim-plugin \ + install-vim-syntax install-neovim: make install-vim \ @@ -591,6 +593,10 @@ install-vim-plugin: mkdir -p -- $(VIMDIR)/plugin cp -p -- vim/plugin/*.vim $(VIMDIR)/plugin +install-vim-syntax: + mkdir -p -- $(VIMDIR)/syntax + cp -p -- vim/syntax/*.vim $(VIMDIR)/syntax + install-vint: cp -p -- vint/vintrc.yaml $(HOME)/.vintrc.yaml diff --git a/vim/after/syntax/readline.vim b/vim/after/syntax/readline.vim new file mode 100644 index 00000000..050b2dc1 --- /dev/null +++ b/vim/after/syntax/readline.vim @@ -0,0 +1,3 @@ +" Clear away the flag we set in syntax/readline.vim to include Bash commands +" in the highlight list +unlet! g:readline_has_bash diff --git a/vim/syntax/readline.vim b/vim/syntax/readline.vim new file mode 100644 index 00000000..874ebb32 --- /dev/null +++ b/vim/syntax/readline.vim @@ -0,0 +1,2 @@ +" Include Bash commands in the highlight list +let g:readline_has_bash = 1 -- cgit v1.2.3 From cacff41bf2f9fa89dae49010ee4c7ab4361ce030 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Wed, 21 Nov 2018 00:54:11 +1300 Subject: Correct sxhkd installation path --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0731df0b..ee6afcb3 100644 --- a/Makefile +++ b/Makefile @@ -606,7 +606,7 @@ install-wget: install-x: check-xinit mkdir -p -- \ $(HOME)/.config \ - $(HOME)/.config/sxhkdrc \ + $(HOME)/.config/sxhkd \ $(HOME)/.xinitrc.d \ $(HOME)/.Xresources.d cp -p -- X/redshift.conf $(HOME)/.config -- cgit v1.2.3 From a95245c9911a3836d5d0728d6079e4c79571c600 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Wed, 21 Nov 2018 22:55:43 +1300 Subject: Restore 'visualbell' Vim setting Commit 35ba8df removed this, but the bell still rings on a TTY and in an X terminal outside of tmux. I didn't notice because the machine I was using doesn't have a PC speaker. --- vim/vimrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vim/vimrc b/vim/vimrc index d017dfe9..03844def 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -215,6 +215,9 @@ if exists('+virtualedit') set virtualedit+=block endif +" Never beep at me +set visualbell t_vb= + " Stack normal/visual/select Ctrl-L to clear search highlight nnoremap :nohlsearch vnoremap :nohlsearchgv -- cgit v1.2.3 From 4a9df2a886b9b5c43685d0853cec62d9401e1a0e Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Wed, 21 Nov 2018 22:57:27 +1300 Subject: Bump VERSION --- VERSION | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 7529c85a..3e345d04 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1,2 @@ -tejr dotfiles v1.71.3 -Wed Oct 31 21:06:39 UTC 2018 +tejr dotfiles v1.72.0 +Wed Nov 21 09:57:27 UTC 2018 -- cgit v1.2.3