mcfly 0.2.4

McFly replaces your default ctrl-r Bash history search with an intelligent search engine that takes into account your working directory and the context of recently executed commands. McFly's suggestions are prioritized in real time with a small neural network.
Documentation
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
# Build mcfly and run a dev environment bash for local mcfly testing

set -e
this_dir=$(cd `dirname "$0"`; pwd)

cargo build
PATH="$PATH:$this_dir/target/debug" \
MCFLY_DEBUG=1 \
    exec /bin/bash --init-file "$this_dir/mcfly.bash" -i