Update install info text

pull/177/head
Bryan Dady 3 years ago
parent 032d2582e9
commit 3d29552c92
  1. 21
      scripts/install.sh

@ -31,7 +31,7 @@ if [ "$bash_too_old" = true ]; then
if [ "$login_shell" = bash ]; then
echo " > Your bash version is old."
echo " > Bash is also your login shell."
echo " > Updating to bash 4.3+ is strongly RECOMMENDED!"
echo " > Updating to bash 4.3+ is STRONGLY RECOMMENDED!"
else
echo " > Your bash version is old"
echo " > Bash is not your login shell so it should not be an issue."
@ -52,7 +52,7 @@ else
if [ "$login_shell" = zsh ]; then
echo " > Your zsh version is old."
echo " > Zsh is also your login shell."
echo " > Updating to Zsh 5.0+ is strongly RECOMMENDED!"
echo " > Updating to Zsh 5.0+ is STRONGLY RECOMMENDED!"
else
echo " > Your zsh version is old"
echo " > Zsh is not your login shell so it should not be an issue."
@ -133,10 +133,6 @@ update_config() {
if [ ! -f ~/.config/resh.toml ]; then
echo "Copying config file ..."
cp -f conf/config.toml ~/.config/resh.toml
# else
# echo "Merging config files ..."
# NOTE: This is where we will merge configs when we make changes to the upstream config
# HINT: check which version are we updating FROM and make changes to config based on that
fi
echo "Generating completions ..."
@ -215,8 +211,8 @@ RESH SEARCH APPLICATION = Redesigned reverse search that actually works
Search your history by commands.
Host, directories, git remote, and exit status is used to display relevant results first.
At first, the search application will use the standard shell history without context.
All history recorded from now on will have context which will by the RESH SEARCH app.
At first, the search results will include standard shell history without context.
From now on, commands in shell history will have additional context added and used by the RESH SEARCH app.
Enable/disable Ctrl+R binding using reshctl command:
$ reshctl enable ctrl_r_binding
@ -227,9 +223,12 @@ CHECK FOR UPDATES
$ reshctl update
HISTORY
Your resh history will be recorded to '~/.resh_history.json'
Look at it using e.g. following command (you might need to install jq)
$ tail -f ~/.resh_history.json | jq
Your shell history will now be recorded to '~/.resh_history.json'
You can (re)view it in a JSON enabled editor, or with the 'jq' command, for example:
$ tail -f ~/.resh_history.json | jq
For more info on the jq command, see https://stedolan.github.io/jq/download/
ISSUES & FEEDBACK
Please report issues to: https://github.com/curusarn/resh/issues

Loading…
Cancel
Save