From b88ab45dae322f6780d8e0be0fdee2c7a68984ab Mon Sep 17 00:00:00 2001 From: Peter Odding Date: Thu, 18 Apr 2013 02:07:11 +0200 Subject: Bug fix: Encode ":" on Mac OS X in xolox#misc#path#encode() Reported here: https://github.com/xolox/vim-notes/pull/28 --- path.vim | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/path.vim b/path.vim index efb6340..6f8fe44 100644 --- a/path.vim +++ b/path.vim @@ -1,9 +1,10 @@ " Vim auto-load script " Author: Peter Odding -" Last Change: September 26, 2011 +" Last Change: April 18, 2013 " URL: http://peterodding.com/code/vim/misc/ let s:windows_compatible = has('win32') || has('win64') +let s:mac_os_x_compatible = has('macunix') function! xolox#misc#path#which(...) let extensions = s:windows_compatible ? split($PATHEXT, ';') : [''] @@ -129,7 +130,13 @@ endfunction " Encode a pathname so it can be used as a filename. function! xolox#misc#path#encode(path) - let mask = s:windows_compatible ? '[*|\\/:"<>?%]' : '[\\/%]' + if s:windows_compatible + let mask = '[*|\\/:"<>?%]' + elseif s:mac_os_x_compatible + let mask = '[\\/%:]' + else + let mask = '[\\/%]' + endif return substitute(a:path, mask, '\=printf("%%%x", char2nr(submatch(0)))', 'g') endfunction -- cgit v1.2.3