summaryrefslogtreecommitdiffstats
path: root/autoload/vimtex/echo.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/echo.vim
parent3c47f192b5758222a1e8055c7e08650e05d0d171 (diff)
downloadvim-polyglot-a9cc6fd2188ddc37257c834b6f5a5fa86d0eebd5.tar.gz
vim-polyglot-a9cc6fd2188ddc37257c834b6f5a5fa86d0eebd5.zip
Remove latex, fixes #484
Diffstat (limited to 'autoload/vimtex/echo.vim')
-rw-r--r--autoload/vimtex/echo.vim121
1 files changed, 0 insertions, 121 deletions
diff --git a/autoload/vimtex/echo.vim b/autoload/vimtex/echo.vim
deleted file mode 100644
index ee80c942..00000000
--- a/autoload/vimtex/echo.vim
+++ /dev/null
@@ -1,121 +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#echo#echo(message) abort " {{{1
- echohl VimtexMsg
- echo a:message
- echohl None
-endfunction
-
-" }}}1
-function! vimtex#echo#input(opts) abort " {{{1
- if g:vimtex_echo_verbose_input
- \ && has_key(a:opts, 'info')
- call vimtex#echo#formatted(a:opts.info)
- endif
-
- let l:args = [get(a:opts, 'prompt', '> ')]
- let l:args += [get(a:opts, 'default', '')]
- if has_key(a:opts, 'complete')
- let l:args += [a:opts.complete]
- endif
-
- echohl VimtexMsg
- let l:reply = call('input', l:args)
- echohl None
- return l:reply
-endfunction
-
-" }}}1
-function! vimtex#echo#choose(list_or_dict, prompt) abort " {{{1
- if empty(a:list_or_dict) | return '' | endif
-
- return type(a:list_or_dict) == type({})
- \ ? s:choose_dict(a:list_or_dict, a:prompt)
- \ : s:choose_list(a:list_or_dict, a:prompt)
-endfunction
-
-" }}}1
-function! vimtex#echo#formatted(parts) abort " {{{1
- echo ''
- try
- for part in a:parts
- if type(part) == type('')
- echohl VimtexMsg
- echon part
- else
- execute 'echohl' part[0]
- echon part[1]
- endif
- unlet part
- endfor
- finally
- echohl None
- endtry
-endfunction
-
-" }}}1
-
-function! s:choose_dict(dict, prompt) abort " {{{1
- if len(a:dict) == 1
- return values(a:dict)[0]
- endif
-
- while 1
- redraw!
- if !empty(a:prompt)
- echohl VimtexMsg
- unsilent echo a:prompt
- echohl None
- endif
-
- let l:choice = 0
- for l:x in values(a:dict)
- let l:choice += 1
- unsilent call vimtex#echo#formatted([['VimtexWarning', l:choice], ': ', l:x])
- endfor
-
- try
- let l:choice = str2nr(input('> ')) - 1
- if l:choice >= 0 && l:choice < len(a:dict)
- return keys(a:dict)[l:choice]
- endif
- endtry
- endwhile
-endfunction
-
-" }}}1
-function! s:choose_list(list, prompt) abort " {{{1
- if len(a:list) == 1 | return a:list[0] | endif
-
- while 1
- redraw!
- if !empty(a:prompt)
- echohl VimtexMsg
- unsilent echo a:prompt
- echohl None
- endif
-
- let l:choice = 0
- for l:x in a:list
- let l:choice += 1
- unsilent call vimtex#echo#formatted([['VimtexWarning', l:choice], ': ', l:x])
- endfor
-
- try
- let l:choice = str2nr(input('> ')) - 1
- if l:choice >= 0 && l:choice < len(a:list)
- return a:list[l:choice]
- endif
- endtry
- endwhile
-endfunction
-
-" }}}1
-
-endif