summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2017-07-30 10:16:41 +0100
committerGitHub <noreply@github.com>2017-07-30 10:16:41 +0100
commit25bb529245b029f53df6b15b94fcbe9de58017fb (patch)
tree7e7cbfe6cfebca9ac7343a3ffb3bc4c24a53f5b6 /doc
parente9a70ccfe996db0acfdb02da874f0583c7958df5 (diff)
parent7723d9935f6a134ce8cc878eb566c6caa784318e (diff)
downloadnixlib-25bb529245b029f53df6b15b94fcbe9de58017fb.tar
nixlib-25bb529245b029f53df6b15b94fcbe9de58017fb.tar.gz
nixlib-25bb529245b029f53df6b15b94fcbe9de58017fb.tar.bz2
nixlib-25bb529245b029f53df6b15b94fcbe9de58017fb.tar.lz
nixlib-25bb529245b029f53df6b15b94fcbe9de58017fb.tar.xz
nixlib-25bb529245b029f53df6b15b94fcbe9de58017fb.tar.zst
nixlib-25bb529245b029f53df6b15b94fcbe9de58017fb.zip
Merge pull request #27709 from binarin/fzf-share
fzf: add script for finding 'share' folder
Diffstat (limited to 'doc')
-rw-r--r--doc/package-notes.xml30
1 files changed, 24 insertions, 6 deletions
diff --git a/doc/package-notes.xml b/doc/package-notes.xml
index 33a61f31938c..230f0ec7b93f 100644
--- a/doc/package-notes.xml
+++ b/doc/package-notes.xml
@@ -366,15 +366,33 @@ it. Place the resulting <filename>package.nix</filename> file into
 
 </section>
 
-<section xml:id="sec-autojump">
+<section xml:id="sec-shell-helpers">
 
-<title>Autojump</title>
+<title>Interactive shell helpers</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:
+  Some packages provide the shell integration to be more useful. But
+  unlike other systems, nix doesn't have a standard share directory
+  location. This is why a bunch <command>PACKAGE-share</command>
+  scripts are shipped that print the location of the corresponding
+  shared folder.
+
+  Current list of such packages is as following:
+
+  <itemizedlist>
+    <listitem>
+      <para>
+        <literal>autojump</literal>: <command>autojump-share</command>
+      </para>
+    </listitem>
+    <listitem>
+      <para>
+        <literal>fzf</literal>: <command>fzf-share</command>
+      </para>
+    </listitem>
+  </itemizedlist>
+
+  E.g. <literal>autojump</literal> can then used in the .bashrc like this:
 <screen>
   source "$(autojump-share)/autojump.bash"
 </screen>