##// END OF EJS Templates
fix some issues in dict key completion...
fix some issues in dict key completion The main change: don't auto-close contexts if they are not opened within the text to match The leading text was being omitted, causing loss of text when greedy=True In practice, this means that strings and brackets will not be closed on dict keys when greedy=False

File last commit:

r16130:886dd89f
r16564:3bde6537
Show More
install-hooks.sh
9 lines | 232 B | application/x-sh | BashLexer
#!/usr/bin/env bash
DOTGIT=`git rev-parse --git-dir`
TOPLEVEL=`git rev-parse --show-toplevel`
TO=${DOTGIT}/hooks
FROM=${TOPLEVEL}/git-hooks
ln -s ${FROM}/post-checkout ${TO}/post-checkout
ln -s ${FROM}/post-merge ${TO}/post-merge