Pārlūkot izejas kodu

weird corner cases

pull/18/head release-v8
Joël Schaerer pirms 14 gadiem
vecāks
revīzija
c533b2b4fd
1 mainītis faili ar 4 papildinājumiem un 1 dzēšanām
  1. +4
    -1
      autojump

+ 4
- 1
autojump Parādīt failu

@ -37,7 +37,10 @@ def dicadd(dic,key,increment=1):
def match(path,pattern,path_dict,re_flags=0):
import re
if os.path.realpath(os.curdir)==path : return False
try:
if os.path.realpath(os.curdir)==path : return False
except OSError: #sometimes the current path doesn't exist anymore. In that case, jump if possible.
pass
if re.search(pattern,"/".join(path.split('/')[-1-pattern.count('/'):]),re_flags) is None:
return False
else:

Notiek ielāde…
Atcelt
Saglabāt