diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-05-20 20:19:03 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-05-20 20:19:03 +0200 |
commit | a9cc6fd2188ddc37257c834b6f5a5fa86d0eebd5 (patch) | |
tree | 952fc9cf50a5f4c42ffb2b1c0077155bcda3e7c1 /autoload/vimtex/pos.vim | |
parent | 3c47f192b5758222a1e8055c7e08650e05d0d171 (diff) | |
download | vim-polyglot-a9cc6fd2188ddc37257c834b6f5a5fa86d0eebd5.tar.gz vim-polyglot-a9cc6fd2188ddc37257c834b6f5a5fa86d0eebd5.zip |
Remove latex, fixes #484
Diffstat (limited to 'autoload/vimtex/pos.vim')
-rw-r--r-- | autoload/vimtex/pos.vim | 97 |
1 files changed, 0 insertions, 97 deletions
diff --git a/autoload/vimtex/pos.vim b/autoload/vimtex/pos.vim deleted file mode 100644 index 127fcd46..00000000 --- a/autoload/vimtex/pos.vim +++ /dev/null @@ -1,97 +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#pos#set_cursor(...) abort " {{{1 - call cursor(s:parse_args(a:000)) -endfunction - -" }}}1 -function! vimtex#pos#get_cursor() abort " {{{1 - return exists('*getcurpos') ? getcurpos() : getpos('.') -endfunction - -" }}}1 -function! vimtex#pos#get_cursor_line() abort " {{{1 - let l:pos = vimtex#pos#get_cursor() - return l:pos[1] -endfunction - -" }}}1 - -function! vimtex#pos#val(...) abort " {{{1 - let [l:lnum, l:cnum; l:rest] = s:parse_args(a:000) - - return 100000*l:lnum + min([l:cnum, 90000]) -endfunction - -" }}}1 -function! vimtex#pos#next(...) abort " {{{1 - let [l:lnum, l:cnum; l:rest] = s:parse_args(a:000) - - return l:cnum < strlen(getline(l:lnum)) - \ ? [0, l:lnum, l:cnum+1, 0] - \ : [0, l:lnum+1, 1, 0] -endfunction - -" }}}1 -function! vimtex#pos#prev(...) abort " {{{1 - let [l:lnum, l:cnum; l:rest] = s:parse_args(a:000) - - return l:cnum > 1 - \ ? [0, l:lnum, l:cnum-1, 0] - \ : [0, max([l:lnum-1, 1]), strlen(getline(l:lnum-1)), 0] -endfunction - -" }}}1 -function! vimtex#pos#larger(pos1, pos2) abort " {{{1 - return vimtex#pos#val(a:pos1) > vimtex#pos#val(a:pos2) -endfunction - -" }}}1 -function! vimtex#pos#equal(p1, p2) abort " {{{1 - let l:pos1 = s:parse_args(a:p1) - let l:pos2 = s:parse_args(a:p2) - return l:pos1[:1] == l:pos2[:1] -endfunction - -" }}}1 -function! vimtex#pos#smaller(pos1, pos2) abort " {{{1 - return vimtex#pos#val(a:pos1) < vimtex#pos#val(a:pos2) -endfunction - -" }}}1 - -function! s:parse_args(args) abort " {{{1 - " - " The arguments should be in one of the following forms (when unpacked): - " - " [lnum, cnum] - " [bufnum, lnum, cnum, ...] - " {'lnum' : lnum, 'cnum' : cnum} - " - - if len(a:args) > 1 - return s:parse_args([a:args]) - elseif len(a:args) == 1 - if type(a:args[0]) == type({}) - return [get(a:args[0], 'lnum'), get(a:args[0], 'cnum')] - else - if len(a:args[0]) == 2 - return a:args[0] - else - return a:args[0][1:] - endif - endif - else - return a:args - endif -endfunction - -" }}}1 - -endif |