dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit 1d7a8fa1e2c1c81b87243c185dc1199786d63012
parent 94d3a755ad0528b66d535e8a5eb392cfc24664b2
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Thu, 29 Aug 2019 11:34:17 +0200

Remove non-working shell expansion

Diffstat:
M.local/bin/board | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/.local/bin/board b/.local/bin/board @@ -28,9 +28,10 @@ board() { fi if [ "$EDITOR" = "vim" ]; then - vim +'windo normal G' -c "windo set tw=1000" "$format" "$dir"/{todo,progress,done}.md + vim +'windo normal G' -c "windo set tw=1000" "$format" \ + "$dir"/todo.md "$dir"/progress.md "$dir"/done.md else - $EDITOR "$dir"/{todo,progress,done}.md + $EDITOR "$dir"/todo.md "$dir"/progress.md "$dir"/done.md fi }