summaryrefslogtreecommitdiffstats
path: root/autoload/vimtex/paths.vim
diff options
context:
space:
mode:
authorAdam Stankiewicz <sheerun@sher.pl>2020-05-20 20:19:03 +0200
committerAdam Stankiewicz <sheerun@sher.pl>2020-05-20 20:19:03 +0200
commita9cc6fd2188ddc37257c834b6f5a5fa86d0eebd5 (patch)
tree952fc9cf50a5f4c42ffb2b1c0077155bcda3e7c1 /autoload/vimtex/paths.vim
parent3c47f192b5758222a1e8055c7e08650e05d0d171 (diff)
downloadvim-polyglot-a9cc6fd2188ddc37257c834b6f5a5fa86d0eebd5.tar.gz
vim-polyglot-a9cc6fd2188ddc37257c834b6f5a5fa86d0eebd5.zip
Remove latex, fixes #484
Diffstat (limited to 'autoload/vimtex/paths.vim')
-rw-r--r--autoload/vimtex/paths.vim91
1 files changed, 0 insertions, 91 deletions
diff --git a/autoload/vimtex/paths.vim b/autoload/vimtex/paths.vim
deleted file mode 100644
index 0d308ed8..00000000
--- a/autoload/vimtex/paths.vim
+++ /dev/null
@@ -1,91 +0,0 @@
-if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'latex') == -1
-
-" vimtex - LaTeX plugin for Vim
-"
-" Maintainer: Karl Yngve LervÄg
-" Email: karl.yngve@gmail.com
-"
-
-function! vimtex#paths#pushd(path) abort " {{{1
- if empty(a:path) || getcwd() ==# fnamemodify(a:path, ':p')
- let s:qpath += ['']
- else
- let s:qpath += [getcwd()]
- execute s:cd fnameescape(a:path)
- endif
-endfunction
-
-" }}}1
-function! vimtex#paths#popd() abort " {{{1
- let l:path = remove(s:qpath, -1)
- if !empty(l:path)
- execute s:cd fnameescape(l:path)
- endif
-endfunction
-
-" }}}1
-
-function! vimtex#paths#is_abs(path) abort " {{{1
- return a:path =~# s:re_abs
-endfunction
-
-" }}}1
-
-function! vimtex#paths#shorten_relative(path) abort " {{{1
- " Input: An absolute path
- " Output: Relative path with respect to the vimtex root, path relative to
- " vimtex root (unless absolute path is shorter)
-
- let l:relative = vimtex#paths#relative(a:path, b:vimtex.root)
- return strlen(l:relative) < strlen(a:path)
- \ ? l:relative : a:path
-endfunction
-
-" }}}1
-function! vimtex#paths#relative(path, current) abort " {{{1
- " Note: This algorithm is based on the one presented by @Offirmo at SO,
- " http://stackoverflow.com/a/12498485/51634
-
- let l:target = simplify(substitute(a:path, '\\', '/', 'g'))
- let l:common = simplify(substitute(a:current, '\\', '/', 'g'))
-
- " This only works on absolute paths
- if !vimtex#paths#is_abs(l:target)
- return substitute(a:path, '^\.\/', '', '')
- endif
-
- let l:tries = 50
- let l:result = ''
- while stridx(l:target, l:common) != 0 && l:tries > 0
- let l:common = fnamemodify(l:common, ':h')
- let l:result = empty(l:result) ? '..' : '../' . l:result
- let l:tries -= 1
- endwhile
-
- if l:tries == 0 | return a:path | endif
-
- if l:common ==# '/'
- let l:result .= '/'
- endif
-
- let l:forward = strpart(l:target, strlen(l:common))
- if !empty(l:forward)
- let l:result = empty(l:result)
- \ ? l:forward[1:]
- \ : l:result . l:forward
- endif
-
- return l:result
-endfunction
-
-" }}}1
-
-
-let s:cd = exists('*haslocaldir') && haslocaldir()
- \ ? 'lcd'
- \ : exists(':tcd') && haslocaldir(-1) ? 'tcd' : 'cd'
-let s:qpath = get(s:, 'qpath', [])
-
-let s:re_abs = has('win32') ? '^[A-Z]:[\\/]' : '^/'
-
-endif