use github.com/grizzlysmit/gzz-goto/gt
fn goto {|@_args|
gt:goto $@_args
}
fn g {|@_args|
gt:g $@_args
}
GOTO is a mixture of a Raku app path.raku and a module Paths.rakumod that implements it and a set of script to apply them inside a shell instance This is important as you need the scripts to call cd from within the shell process in order to actually change it's current directory otherwise we would only change a subprocesses current directory and then nothing would have been achieved on exit. The scripts are .goto_bash_aliases -> /home/grizzlysmit/Projects/elvish/gzz-goto/bash_aliases in bash and the combination of some lines in your rc.elv file and a elevish module gt.elv.
multi sub MAIN(Str:D $key --> int){
say path($key);
return 0;
}
To set up the underpinings
cd <path> git clone https://github.com/grizzlysmit/gzz-goto.git cd mkdir rakulib cd rakulib ln -s <path>/gzz-goto/rakulib/Paths.rakumod cd mkdir bin cd bin ln -s <path>/gzz-goto/bin/paths.raku
where path is the path you have chosen to clone the github repository to.
make sure $HOME/bin is in your search path, and also raku needs to be installed.
if you have sysamin privaliges you may want to put config files in /etc/skel/.local/share/paths/
just run
sudo cp -rv <path>/.local/ /etc/skel/
cd ln -s <path>/gzz-goto/bash_aliases ~/.goto_bash_aliases or ln -s <path>/gzz-goto/bash_aliases ~/.prefered_name and adjust bellow. gvim -p ~/.bashrc # or use another editor of your choice.
add
if [ -e "$HOME/.goto_bash_aliases" ]
then
# shellcheck disable=SC1090
source ~/.goto_bash_aliases
fi
line # shellcheck disable=SC1090 for those who use shellcheck linter ideally you should use it or something equivalent
use epm epm:install github.com/grizzlysmit/gzz-goto
add this to your rc.elv
these four lines are optional if you have done the epm:install above then this is redundant but if you want your rc.elv to be portable then add them anyway
use epm
epm:install &silent-if-installed ^
github.com/grizzlysmit/gzz-goto
definately add these lines.
use github.com/grizzlysmit/gzz-goto/gt
fn goto {|@_args|
gt:goto $@_args
}