Will Lee

Results 7 comments of Will Lee

I'm pretty interested in getting this bug resolved as I seem to get the same error on Linux talking to a MSSQL server. I'm trying to convert something from using...

Can you try using &diff to detect if you are in a diff mode and map something differently?

Never mind what I said. I think it may be that your vim is somewhat old. Can you upgrade your vim?

I tried this on a Mac with nvim 0.4.4 (installed with brew) and I don't seem to see this problem. I tried to do a nvim -c "DirDiff d1 d2"...

I think I usually just exclude with file patterns.  If this does not work for you perhaps you can write a script that calls something like this: diff -r dir1/...

Can the parent directory (the makedirs of os.path.dirname(mirror_dir)) be changed to something like this? ``` os.makedirs(os.path.abspath(os.path.join(mirror_dir, os.pardir))) ``` for instance: ``` In [7]: os.path.abspath(os.path.join('/abc/def/', os.pardir)) '/abc' In [8]: os.path.abspath(os.path.join('/abc/def', os.pardir))...

I'm not sure about the other cases with the git_url, but is having a trailing "/" an invalid input? If there's no side effect to other type of url, it...