From 332c91bea2ffb35b6b39722a70c93c248fb64c30 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Mon, 15 Jan 2018 11:58:24 +1300 Subject: Quote EDITOR/VISUAL assignments for clarity This appeases ShellCheck 0.4.7, which is fretting that I meant a command expansion. I didn't, but it seems a bit nicer to quote these anyway. In sh/profile.d/editor.sh line 4: EDITOR=ed ^-- SC2209: Use var=$(command) to assign output (or quote to assign string). In sh/profile.d/editor.sh line 22: EDITOR=ex ^-- SC2209: Use var=$(command) to assign output (or quote to assign string). In sh/profile.d/visual.sh line 2: VISUAL=vi ^-- SC2209: Use var=$(command) to assign output (or quote to assign string). --- sh/profile.d/visual.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sh/profile.d/visual.sh') diff --git a/sh/profile.d/visual.sh b/sh/profile.d/visual.sh index 38ab9893..119d81c7 100644 --- a/sh/profile.d/visual.sh +++ b/sh/profile.d/visual.sh @@ -1,3 +1,3 @@ # Use first found implementation of vi(1) -VISUAL=vi +VISUAL='vi' export VISUAL -- cgit v1.2.3