Merge pull request #15213 from zimbatm/autojump-share

autojump: include a way to find the share dir
This commit is contained in:
zimbatm 2016-05-05 19:49:17 +01:00
commit fb23979833
2 changed files with 23 additions and 3 deletions

View file

@ -366,4 +366,20 @@ it. Place the resulting <filename>package.nix</filename> file into
</section>
<section xml:id="sec-autojump">
<title>Autojump</title>
<para>
autojump needs the shell integration to be useful but unlike other systems,
nix doesn't have a standard share directory location. This is why a
<command>autojump-share</command> script is shipped that prints the location
of the shared folder. This can then be used in the .bashrc like this:
<screen>
source "$(autojump-share)/autojump.bash"
</screen>
</para>
</section>
</chapter>

View file

@ -22,9 +22,13 @@ in
mkdir -p "$out/etc/bash_completion.d"
cp -v $out/share/autojump/autojump.bash "$out/etc/bash_completion.d"
# FIXME: What's the right place for `autojump.zsh'?
# This can be used as a workaround in .zshrc:
# . $HOME/.nix-profile/share/autojump/autojump.zsh
cat <<SCRIPT > $out/bin/autojump-share
#!/bin/sh
# Run this script to find the autojump shared folder where all the shell
# integration scripts are living.
echo $out/share/autojump
SCRIPT
chmod +x $out/bin/autojump-share
'';
meta = {