aboutsummaryrefslogtreecommitdiff
path: root/runtime/autoload/health/nvim.vim
Commit message (Collapse)AuthorAge
* refactor(checkhealth): convert "nvim" check to LuaJustin M. Keyes2022-10-30
|
* fix(health): correct tmux rgb verification (#20868)Barrett Ruth2022-10-30
| | | Current RGB verification parses `tmux server-info`. Despite it being a tmux default alias to `tmux show-messages -JT`, it may be unavailable. Use `tmux show-messages -JT` directly instead.
* fix(health): correct shada file path #18603zeertzjq2022-05-17
|
* feat(checkhealth): check for slow shell #17829Philip Linell2022-04-26
| | | | | | | | | | Problem: I had some issues where multiple plugins (vim-fzf and fugitive) was slow because of my `.zshenv`. Solution: Check shell performance in :checkhealth. Co-authored-by: Justin M. Keyes <justinkz@gmail.com>
* fix(health): do not run external processes in a shellzeertzjq2022-02-03
|
* feat(provider)!: remove support for python2 and python3.[3-5]Björn Linse2022-01-29
| | | | | | These versions of python has reached End-of-life. getting rid of python2 support removes a lot of logic to support two incompatible python versions in the same version.
* checkhealth: fix terminfo problems on Windowserw72021-01-06
| | | | fixes #13415
* checkhealth: fix problem where &shada is emptyerw72021-01-06
| | | | fixes #13700
* healthcheck: fix health check issue with shada file (#13291)erw72020-12-13
| | | | | - If the shada file is set with shada option n, use it. - If the shadafile is NONE, it does not check for file read/write access. - If the shada file does not exist, try to create it.
* Added healt check for tmux focus eventsBK16032020-07-02
|
* health.vim: check has("debug")Justin M. Keyes2019-08-04
|
* health.vim: check shada file #10327Justin M. Keyes2019-06-25
| | | closes #1202
* health: check if tmux enabled true colors (#9929)Marco Hinz2019-04-20
| | | References https://github.com/neovim/neovim/issues/7764
* checkhealth: validate locale (#9548)Justin M. Keyes2019-01-26
| | | | | | Test case: LANG= LC_ALL= LC_CTYPE= tmux nvim -u NORC +'checkhealth nvim'
* health.vim: Detect missing init.vimJustin M. Keyes2018-08-27
| | | | closes #4877
* runtime/autoload/health/*.vim: fix vint warning (#8048)Daniel Hahler2018-02-22
|
* docJustin M. Keyes2017-12-26
| | | | | | | | vim-patch:8.0.1206: no autocmd for entering or leaving the command line (commit a4f6cec7a31ff8dbfa089b9e22227afbeb951e9b) NA patches: vim-patch:8.0.0320: warning for unused variable with small build
* health.vim: normalize slashes for script path (#7525)Jan Edmund Lazo2017-11-13
| | | | | :checkhealth reports that remote plugins are unregistered after running :UpdateRemotePlugins because of the backslashes in filepath. Normalize them to forward slashes because the paths in rplugin.vim are normalized in autoload/remote/host.vim.
* health.vim: env var may be defined but empty #7498Justin M. Keyes2017-11-07
|
* health.vim: show TUI-related env vars (#7498)Justin M. Keyes2017-11-07
| | | | ref #7473 ref #7490
* :checkhealth : validate $VIMJustin M. Keyes2017-10-17
|
* health.vim: warn about 'paste' optionJustin M. Keyes2017-10-15
|
* health.vim: Remove sensible.vim advice. (#6709)Justin M. Keyes2017-05-10
| | | sensible.vim now avoids setting ttimeoutlen for nvim.
* health.vim: 'guicursor' advice #6506TJ DeVries2017-04-20
| | | | | | Also: - Mark provider sections as "(optional)". - Fix help-link substitution to support single-quoted tags.
* health.vim: tmux: Try -qvg and -qvgs (#6348)Tommy Allen2017-03-24
|
* health.vim: tmux $TERM, default-terminalJustin M. Keyes2017-03-06
|
* health: Windows: Handle backslash path separators. (#5914)Justin M. Keyes2017-01-08
| | | | | | | * health: Handle backslash path separators. * health: brevity, consistency * health: Do not set bufhidden=wipe. In the context of CheckHealth, bufhidden=wipe loses data for no reason.
* CheckHealth: terminfo: remove "kbs" adviceJustin M. Keyes2016-12-23
|
* CheckHealth: more precise check for sensible.vimJustin M. Keyes2016-12-11
| | | | Closes #5751
* CheckHealth: fix check for tmux escape-time (#5545)J Phani Mahesh2016-10-29
|
* CheckHealth: check for sensible.vimJustin M. Keyes2016-10-28
|
* CheckHealth: more checksJustin M. Keyes2016-10-25
|
* CheckHealth: check terminfoJustin M. Keyes2016-10-16
|
* CheckHealth: check tmux configurationJustin M. Keyes2016-10-16
|
* health.vim: Factor out health#provider#check()Justin M. Keyes2016-09-05
|
* Improve Ruby version check in CheckHealth commandAlex Genco2016-09-04
| | | | | | | | Compare current version number to that of the latest released neovim rubygem, rather than a hard-coded version. Note: The `gem list` command introduced here adds about 4 seconds to the execution time of the CheckHealth command.
* CheckHealthJustin M. Keyes2016-08-21
| | | | | | | - Overlay markdown syntax/filetype, don't invent new filetypes/syntaxes. - migrate s:check_ruby() - s:indent_after_line1 - Less-verbose output
* CheckHealthTJ DeVries2016-08-21
- Use execute() instead of redir - Fixed logic on suboptimal pyenv/virtualenv checks. - Move system calls from strings to lists. Fixes #5218 - Add highlighting - Automatically discover health checkers - Add tests Helped-by: Shougo Matsushita <Shougo.Matsu@gmail.com> Helped-by: Tommy Allen <tommy@esdf.io> Closes #4932