mirror of
				https://github.com/wting/autojump
				synced 2025-06-13 12:54:07 +00:00 
			
		
		
		
	refactor install.zsh so only one line needs to be added to .zshrc
This commit is contained in:
		
							parent
							
								
									d1712dd757
								
							
						
					
					
						commit
						2a364ae73e
					
				
							
								
								
									
										14
									
								
								autojump.zsh
									
									
									
									
									
								
							
							
						
						
									
										14
									
								
								autojump.zsh
									
									
									
									
									
								
							@ -14,22 +14,26 @@
 | 
			
		||||
#You should have received a copy of the GNU General Public License
 | 
			
		||||
#along with autojump.  If not, see <http://www.gnu.org/licenses/>.
 | 
			
		||||
 | 
			
		||||
#determine the data directory according to the XDG Base Directory Specification
 | 
			
		||||
if [ -n "$XDG_DATA_HOME" ]
 | 
			
		||||
then
 | 
			
		||||
# determine the data directory according to the XDG Base Directory Specification
 | 
			
		||||
if [ -n "$XDG_DATA_HOME" ]; then
 | 
			
		||||
    export AUTOJUMP_DATA_DIR="$XDG_DATA_HOME/autojump"
 | 
			
		||||
else
 | 
			
		||||
    export AUTOJUMP_DATA_DIR=~/.local/share/autojump
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
if [ ! -e "${AUTOJUMP_DATA_DIR}" ]
 | 
			
		||||
then
 | 
			
		||||
if [ ! -e "${AUTOJUMP_DATA_DIR}" ]; then
 | 
			
		||||
    mkdir -p "${AUTOJUMP_DATA_DIR}"
 | 
			
		||||
    mv ~/.autojump_py "${AUTOJUMP_DATA_DIR}/autojump_py" 2>>/dev/null #migration
 | 
			
		||||
    mv ~/.autojump_py.bak "${AUTOJUMP_DATA_DIR}/autojump_py.bak" 2>>/dev/null
 | 
			
		||||
    mv ~/.autojump_errors "${AUTOJUMP_DATA_DIR}/autojump_errors" 2>>/dev/null
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
# set paths if necessary for local installations
 | 
			
		||||
if [[ -d ~/.autojump/ ]]; then
 | 
			
		||||
    path=(~/.autojump/bin $path)
 | 
			
		||||
    fpath=(/home/ting/.autojump/functions/ $fpath)
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
function autojump_preexec() {
 | 
			
		||||
    { (autojump -a "$(pwd -P)"&)>/dev/null 2>>|${AUTOJUMP_DATA_DIR}/.autojump_errors ; } 2>/dev/null
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@ -128,8 +128,6 @@ else
 | 
			
		||||
	echo
 | 
			
		||||
	echo "Add the following lines to your ~/.zshrc:"
 | 
			
		||||
	echo
 | 
			
		||||
	echo -e "\tpath=(${prefix}/bin \${path})"
 | 
			
		||||
	echo -e "\tfpath=(${prefix}/functions \${fpath})"
 | 
			
		||||
	echo -e "\tsource ${prefix}/etc/profile.d/autojump.zsh"
 | 
			
		||||
	echo
 | 
			
		||||
	echo "You need to source your ~/.zshrc (source ~/.zshrc) before you can start using autojump."
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user