diff options
author | Joey Hess <joey@kitenet.net> | 2014-05-27 20:13:55 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-05-27 20:13:55 -0400 |
commit | e9745a85b72d43d57b6cba64c7062c49dc65c675 (patch) | |
tree | 354b5f681386ac9675efcf3a6c19e5c9374389f4 | |
parent | 62a2f91977f8efd0ad3ea7e5e3732656f58a2e17 (diff) | |
parent | f0e7ee2896521ac9f55ab47af1cbfa0b1bb91d13 (diff) |
Merge branch 'master' of ssh://git-annex.branchable.com
3 files changed, 29 insertions, 0 deletions
diff --git a/doc/bugs/Bootstrap3_icons_missing_on_Android/comment_7_a24b5165590b5d58919da1003cd20c54._comment b/doc/bugs/Bootstrap3_icons_missing_on_Android/comment_7_a24b5165590b5d58919da1003cd20c54._comment new file mode 100644 index 000000000..194d1c831 --- /dev/null +++ b/doc/bugs/Bootstrap3_icons_missing_on_Android/comment_7_a24b5165590b5d58919da1003cd20c54._comment @@ -0,0 +1,8 @@ +[[!comment format=mdwn + username="http://joeyh.name/" + ip="209.250.56.176" + subject="comment 7" + date="2014-05-28T00:02:42Z" + content=""" +The string is indeed truncated; it seems that something, probably the EvilSplicer is doing effectively a s/\w+:// on the string. +"""]] diff --git a/doc/bugs/Bootstrap3_icons_missing_on_Android/comment_8_71ed14b8e5a898b1643d5e37591c2476._comment b/doc/bugs/Bootstrap3_icons_missing_on_Android/comment_8_71ed14b8e5a898b1643d5e37591c2476._comment new file mode 100644 index 000000000..f5bc22ec7 --- /dev/null +++ b/doc/bugs/Bootstrap3_icons_missing_on_Android/comment_8_71ed14b8e5a898b1643d5e37591c2476._comment @@ -0,0 +1,8 @@ +[[!comment format=mdwn + username="http://joeyh.name/" + ip="209.250.56.176" + subject="comment 8" + date="2014-05-28T00:04:58Z" + content=""" +Almost certinaly the EvilSplicer; it contains a hack to remove package-version qualifications from symbols. (s/package-version:symbol/symbol/) +"""]] diff --git a/doc/tips/ZSH_completion.mdwn b/doc/tips/ZSH_completion.mdwn new file mode 100644 index 000000000..f3ececd46 --- /dev/null +++ b/doc/tips/ZSH_completion.mdwn @@ -0,0 +1,13 @@ +ZSH users, here's some good news: after 2 years of silence, the completion function for git-annex has been updated. It now supports *all* git-annex commands (as of 5.20140517) and has many improvements for completing arguments, remotes, groups, and backends. + +To install it: + +1. make sure your have Python 3 installed (as `python3` somewhere in your `$PATH`; tested with 3.4, should work with 3.2+) +2. get it from [GitHub](https://github.com/Schnouki/git-annex-zsh-completion) +3. copy `_git-annex` to somewhere in your `$fpath` (I use `$HOME/.config/zsh/completion`) +4. run `autoload -U path/to/_git-annex` +5. type `git annex <TAB>` + +This is very far from being perfect, but it's (IMHO) better than nothing. If you have any issue or suggestion, please [tell me](https://github.com/Schnouki/git-annex-zsh-completion/issues)! + +Many thanks to Frank Terbeck and Valentin Haenel, the original authors of this completion function ([source](https://github.com/esc/git-annex-zsh-completion)). |