configs  Check-in [e18743ad0f]

Overview
Comment:Pass -N to fossil diff for fsld
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: e18743ad0fec974b8d079d44feff370c8eeaeaf029dd4a7ac41e19b2c055889e
User & Date: js on 2020-05-24 00:24:43
Other Links: manifest | tags
Context
2020-05-24
11:34
Fix spacing errors check-in: 8ed8fb5afa user: js tags: trunk
00:24
Pass -N to fossil diff for fsld check-in: e18743ad0f user: js tags: trunk
00:13
zshrc: Show git and fossil branch at the same time check-in: 5cca8d3f29 user: js tags: trunk
Changes

Modified fish/functions/fsld.fish from [4a495f4b61] to [9f9e64bc4b].

1
2
3
function fsld
    fossil diff $argv | colordiff | less -FRX
end

|

1
2
3
function fsld
    fossil diff $argv -N | colordiff | less -FRX
end

Modified zshrc from [50db66a53c] to [7a953e445f].

203
204
205
206
207
208
209
210
211
212
213
214
215
216
217

alias tmux="tmux -f $XDG_CONFIG_HOME/tmux/tmux.conf"

if which fossil &>/dev/null; then
	alias fsl="fossil"

	fsld() {
		fossil diff "$@" | colordiff | less -FRX
	}
fi

# pkgsrc does not like MAKEFLAGS including -j
which pkg_chk &>/dev/null && alias pkg_chk="MAKEFLAGS= pkg_chk"
which pkg_rolling-replace &>/dev/null &&
	alias pkg_rolling-replace="MAKEFLAGS= pkg_rolling-replace"







|







203
204
205
206
207
208
209
210
211
212
213
214
215
216
217

alias tmux="tmux -f $XDG_CONFIG_HOME/tmux/tmux.conf"

if which fossil &>/dev/null; then
	alias fsl="fossil"

	fsld() {
		fossil diff -N "$@" | colordiff | less -FRX
	}
fi

# pkgsrc does not like MAKEFLAGS including -j
which pkg_chk &>/dev/null && alias pkg_chk="MAKEFLAGS= pkg_chk"
which pkg_rolling-replace &>/dev/null &&
	alias pkg_rolling-replace="MAKEFLAGS= pkg_rolling-replace"