misc/vim: inform the user when no results are found
[nit.git] / README
diff --git a/README b/README
index 019f58b..3ee0c42 100644 (file)
--- a/README
+++ b/README
@@ -7,6 +7,7 @@ While object-oriented, it allows procedural styles.
 The Nit Compiler (nitc) produces efficient machine language binaries.
 
 Some Nit features:
+
  * Pure Object-Oriented.
  * Multiple Inheritance.
  * Realist typing policy.
@@ -16,18 +17,21 @@ Some Nit features:
 Requirement:
 
        * gcc           http://gcc.gnu.org/
+       * pkg-config    http://www.freedesktop.org/wiki/Software/pkg-config/
        * ccache        http://ccache.samba.org/        to improve recompilation
+       * libgc-dev     http://www.hpl.hp.com/personal/Hans_Boehm/gc/
+       * graphviz      http://www.graphviz.org/        to enable graphes with the nitdoc tool
+       * libunwind     http://nongnu.org/libunwind
 
-Optionals tools:
+Those are available in most linux distributions
 
-       * dot           http://www.graphviz.org/        to enable graphes with the nitdoc tool
+    # sudo apt-get install build-essential ccache libgc-dev graphviz libunwind pkg-config
 
 Important files and directory:
 
        benchmarks/     Script to bench the compilers
        bin/            The Nit tools
        bin/nitc        The Nit compiler
-       bin/nitg        The new Nit compiler
        bin/nit         The Nit interpreter
        bin/nitdoc      The Nit autodoc
        c_src/          C code of nitc (needed to bootstrap)
@@ -48,10 +52,16 @@ Important files and directory:
 
 How to start:
 
- * $ make
- * $ bin/nitc examples/hello_world.nit
- * $ ./hello_world
+    $ make
+    $ bin/nitc examples/hello_world.nit
+    $ ./hello_world
+
+You can put the `bin/` directoty in your PATH
+
+Using bash completion with Nit tools:
 
+    $ echo source /absolute/path/to/misc/bash_completion/nit >> ~/.bash_completion
+    $ source ~/.bash_completion
 
 More information: