mirror of
				https://github.com/wting/autojump
				synced 2025-06-13 12:54:07 +00:00 
			
		
		
		
	Autojump lua script portability fix
This commit is contained in:
		
							parent
							
								
									b71612eea4
								
							
						
					
					
						commit
						3e5cec67b9
					
				@ -1,13 +1,15 @@
 | 
			
		||||
local AUTOJUMP_DIR = debug.getinfo(1, "S").source:match[[^@?(.*[\/])[^\/]-$]] .. "..\\AutoJump"
 | 
			
		||||
local AUTOJUMP_BIN_DIR = AUTOJUMP_DIR .. "\\bin"
 | 
			
		||||
local AUTOJUMP_BIN = (AUTOJUMP_BIN_DIR or clink.get_env("LOCALAPPDATA") .. "\\autojump\\bin") .. "\\autojump"
 | 
			
		||||
 | 
			
		||||
function autojump_add_to_database() 
 | 
			
		||||
  os.execute("python " .. AUTOJUMP_BIN .. " --add " .. clink.get_cwd() .. " 2> " .. clink.get_env("TEMP") .. "\\autojump_error.txt")
 | 
			
		||||
  os.execute("python " .. "\"" .. AUTOJUMP_BIN .. "\"" .. " --add " .. "\"" .. clink.get_cwd() .. "\"" .. " 2> " .. clink.get_env("TEMP") .. "\\autojump_error.txt")
 | 
			
		||||
end
 | 
			
		||||
 | 
			
		||||
clink.prompt.register_filter(autojump_add_to_database, 99)
 | 
			
		||||
 | 
			
		||||
function autojump_completion(word)
 | 
			
		||||
  for line in io.popen("python " .. AUTOJUMP_BIN .. " --complete " .. word):lines() do
 | 
			
		||||
  for line in io.popen("python " .. "\"" .. AUTOJUMP_BIN .. "\"" ..  " --complete " .. word):lines() do
 | 
			
		||||
    clink.add_match(line)
 | 
			
		||||
  end
 | 
			
		||||
  return {} 
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user