aboutsummaryrefslogtreecommitdiff
path: root/ISSUES.markdown
blob: b057fc7d923bb7d6e9da0029146183f4fb9d5aef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Known issues
============

*   vr() does not handle the newer version of Subversion repositories which
    only have a .svn directory at the root level.
*   The terminfo files probably still do not work on NetBSD (needs retesting
    and manual page reading).
*   man(1) completion doesn't work on OpenBSD as manpath(1) isn't a thing on
    that system; need to find some way of finding which manual directories
    should be searched at runtime, if there is one.
*   OpenBSD doesn't have a `pandoc` package at all. It would be nice to find
    some way of converting the README.markdown into a palatable troff format
    with some more readily available (and preferably less heavyweight) tool.
*   At least one of the completion scripts (pass.bash) hangs on empty
    completions (i.e. nothing matches the search term) in Bash 4.4rc1; the last
    thing bash -x shows is an "exit 1" hang
*   The checks gscr(1) makes to determine where it is are a bit naive (don't
    work with bare repos) and could probably be improved with some appropriate
    git-reflog(1) cals
*   The \xFF syntax for regex as used in rfct(1) is not POSIX. Need to decide
    if it's well-supported enough to keep it anyway.
*   Git prompt seems to change its mind about file moves after a run of
    git-status:

        tom@conan:~/.dotfiles(master)$ git mv bash/bashrc.d/ud.bash sh/shrc.d/ud.sh
        tom@conan:~/.dotfiles(master!+)$ git diff --cached
        diff --git a/bash/bashrc.d/ud.bash b/sh/shrc.d/ud.sh
        similarity index 100%
        rename from bash/bashrc.d/ud.bash
        rename to sh/shrc.d/ud.sh
        tom@conan:~/.dotfiles(master!+)$
        tom@conan:~/.dotfiles(master!+)$
        tom@conan:~/.dotfiles(master!+)$ git status
        R  bash/bashrc.d/ud.bash -> sh/shrc.d/ud.sh
        tom@conan:~/.dotfiles(master+)$