Merge branch 'noqqe-master'
diff --git a/bash_it.sh b/bash_it.sh
index f0c850c..fef8584 100644
--- a/bash_it.sh
+++ b/bash_it.sh
@@ -69,5 +69,6 @@
   echo "  todo-help                   This will list out all the aliases you can use with todo.txt-cli"
   echo "  aliases-help                Generic list of aliases."
   echo "  plugins-help                This will list out all the plugins and functions you can use with bash-it"
+  echo "  ref-help 					  Get help for the ref plugin."
   echo
 }
diff --git a/plugins/ref.plugin.bash b/plugins/ref.plugin.bash
index 4f9ce26..1c4deb0 100644
--- a/plugins/ref.plugin.bash
+++ b/plugins/ref.plugin.bash
@@ -41,8 +41,6 @@
 # 
 # array
 # select
-# 																																									
-# I hope that you like this plugin and if you have any questions about it, send me (mrman208) a message on GitHub or email me at mrman208@me.com 					
 #####################################################################################################################################################################
 
 ref() {
@@ -53,20 +51,26 @@
 
 	REF_DIR=${REF_DIR%/}
 
+	builtin cd $REF_DIR
+
 	if [ "$1" = 'ls' ]
 	then
 		if [ "$2" = '' ]
 		then
-			builtin cd "$REF_DIR"
 			ls -G
 			builtin cd - > /dev/null
 			return
 		else
-			builtin cd "$REF_DIR"/"$2"
 			ls -G
 			builtin cd - > /dev/null
 			return
 		fi
+	elif [ "$1" = 'new' ]
+	then
+		mkdir -p "$2"/"$3"
+		echo You can now put the index.html file into "$REF_DIR"/"$2"/"$3"
+		builtin cd - > /dev/null
+		return
 	fi
 
 	DIR="${1}/${2}"
@@ -81,3 +85,25 @@
 		gnome-open index.html
 	fi
 }
+
+ref-help() {
+	echo
+	echo "Help for the ref plugin"
+	echo "-----------------------"
+	echo
+	echo "Setting up: "
+	echo
+	echo "First, set the REF_DIR variable in you ~/.bash_profile to the directory you want to store your references in."
+	echo "You don't even have to create this directory if you don't want to, ref will make it for you if it doesn't exist."
+	echo
+	echo "Then, you can start adding some refs. You can do so with this command: "
+	echo "	ref new topic subtopic"
+	echo "Where topic is the general topic, such as ruby. And subtopic is a more exact topic, like array."
+	echo "This will create a directory for the topic, and a subdirectory for the subtopic. You can then move a file of your desired format into the subtopic's directory."
+	echo
+	echo "To access your ref, you would do the following command: "
+	echo "	ref topic subtopic"
+	echo "Where topic and subtopic are the same as before, but ref will open the file under your topic/subtopic directory. Unless it is a full website."
+	echo
+	echo "You can also download full websites as a ref, as long as it has an index.html file, it will work."
+}
diff --git a/themes/modern/modern.theme.bash b/themes/modern/modern.theme.bash
index 2d0948f..f0dbccc 100644
--- a/themes/modern/modern.theme.bash
+++ b/themes/modern/modern.theme.bash
@@ -28,6 +28,8 @@
 	fi
 }
 
+PS2="└─▪ "
+
 
 
 PROMPT_COMMAND=prompt