| File plugin/inccomplete.vim changed (mode: 100644) (index 5aea5bd..7deb2b2) |
| 1 |
1 |
" Name: inccomplete |
" Name: inccomplete |
| 2 |
2 |
" Author: xaizek <xaizek@openmailbox.org> |
" Author: xaizek <xaizek@openmailbox.org> |
| 3 |
|
" Version: 1.7.42 |
|
|
3 |
|
" Version: 1.7.43 |
| 4 |
4 |
" License: Same terms as Vim itself (see :help license) |
" License: Same terms as Vim itself (see :help license) |
| 5 |
5 |
" |
" |
| 6 |
6 |
" See :help inccomplete for documentation. |
" See :help inccomplete for documentation. |
| |
| ... |
... |
endfunction |
| 499 |
499 |
" returns list of three elements: [name_pos, slash_for_regexps, ordinary_slash] |
" returns list of three elements: [name_pos, slash_for_regexps, ordinary_slash] |
| 500 |
500 |
function! s:ICParsePath(path) |
function! s:ICParsePath(path) |
| 501 |
501 |
let l:iswindows = has('win16') || has('win32') || has('win64') || |
let l:iswindows = has('win16') || has('win32') || has('win64') || |
| 502 |
|
\ has('win95') || has('win32unix') |
|
|
502 |
|
\ has('win95') |
| 503 |
503 |
|
|
| 504 |
504 |
" determine type of slash |
" determine type of slash |
| 505 |
505 |
let l:path = a:path |
let l:path = a:path |