diff --git a/debian/changelog b/debian/changelog index cfa14d40..af399563 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,8 @@ byobu (3.30) unreleased; urgency=low * usr/share/applications/byobu.desktop: enhance description + * usr/bin/byobu-status-detail: make a couple of minor modifications + noticed while investigating the already-fixed LP: #750887 -- Dustin Kirkland Sun, 27 Feb 2011 10:29:53 -0600 diff --git a/usr/bin/byobu-status-detail b/usr/bin/byobu-status-detail index da468b04..841841e1 100755 --- a/usr/bin/byobu-status-detail +++ b/usr/bin/byobu-status-detail @@ -18,8 +18,8 @@ # along with this program. If not, see . if which vim >/dev/null && `vim --version | grep -q +folding`; then - exec byobu-status --detail | vim -c "set foldmethod=indent" -c "set foldminlines=0" -c "set foldnestmax=1" -c "set foldcolumn=2" -R - + byobu-status --detail | vim -c "set foldmethod=indent" -c "set foldminlines=0" -c "set foldnestmax=1" -c "set foldcolumn=2" -R - else (which sensible-pager >/dev/null) && PAGER=sensible-pager || PAGER=less - exec byobu-status --detail | $PAGER + byobu-status --detail | $PAGER fi