aboutsummaryrefslogtreecommitdiff
path: root/runtime/autoload
Commit message (Collapse)AuthorAge
...
* provider: Remove dict attribute from stderr_collectorJames McCoy2017-08-26
| | | | | | | | | | | | If an autoloaded function hasn't been resolved before it is used in function(), the self dict will not be created which causes E725 when calling the function. Since self isn't being used in provider#stderr_collector, we can remove the dict attribute to workaround the self dict bug[0]. Closes #7115 [0]: https://groups.google.com/d/msg/vim_dev/I7AXOyv-P4o/DzbyOxDHBgAJ
* clipboard: disallow recursion; show hint only once (#7203)Justin M. Keyes2017-08-22
| | | | | | | | - Show hint only once per session. - provider#clipboard#Call(): prevent recursion - provider#clear_stderr(): use has_key(), because :silent! is still captured by :redir. closes #7184
* clipboard: test g:clipboard validation, fix a bugJustin M. Keyes2017-08-20
| | | | Also fix `:help foo` highlighting in health.vim
* clipboard: avoid error flood during :redirJustin M. Keyes2017-08-20
| | | | | | | | | | | | | | | | | | redir_write(): - This is a "batch" operation which was not yet covered by start_batch_changes() adjust_clipboard_name(): - msg() and friends during :redir will, of course, cause redir_write() to try to capture that message, which causes recursion. - EMSG() here is trouble: if it interrupts :redir it is a mess. Rather than deal with the mess, show a non-error message. closes #7182 closes #7184 closes #7183 ref #6048 ref #7032
* provider#clear_stderr: Use remove() not delete() to update s:stderrJames McCoy2017-08-18
| | | | Ref #7184
* provider: clipboard: Only report stderr if the job failedJames McCoy2017-07-24
| | | | Closes #7054
* provider: Extra pythonx's stderr handling to common functionsJames McCoy2017-07-24
|
* provider/clipboard.vim: fix logic issue #7042Andy Russell2017-07-17
| | | | Closes #7039
* Merge #7028 from fmoralesc/vimtutor-disentangle2Justin M. Keyes2017-07-16
|\ | | | | | | | | | | Closes #4533 Closes #6389 Closes #4913 Closes #7005
| * tutor: reorganizeFelipe Morales2017-07-16
| |
| * tutor: update syntaxFelipe Morales2017-07-15
| | | | | | | | | | | | | | | | sampletext regions no longer supported make sure tutorExpect is available don't conceal code region delimiters
| * tutor: disable old method for setting "expect" regionsFelipe Morales2017-07-15
| | | | | | | | tutor: remove movement mappings
| * tutor: allow metadata to exist outside of the documents.Felipe Morales2017-07-15
| | | | | | | | this makes 'expect' regions simpler to handle.
* | provider/clipboard.vim: capture/display errors (#6684)Andy Russell2017-07-15
| | | | | | | | | | | | TODO: handle errors in the `get`. systemlist() should take an options dictionary like jobstart(), which may specify a stderr handler. References #6565
* | health.vim: validate g:clipboardJustin M. Keyes2017-07-15
|/ | | | | | | Closes #7020 Also fix 'iskeyword' setting, which I fumbled in 440133e0d5d576e46bd5ffa555f6a9c534789b48
* provider/clipboard.vim: Handle missing g:clipboard keysJustin M. Keyes2017-06-28
|
* provider/clipboard.vim: allow configuration #6030Justin M. Keyes2017-06-27
| | | | Closes #6029
* runtime: Allow overriding ruby host with g:ruby_host_progAlex Genco2017-06-17
| | | | | | | This allows users who have per-project Ruby versions (e.g. with `rvm`) to pin to a particular gem installation. For example: `let g:ruby_host_prog = 'rvm system do neovim-ruby-host'`
* runtime: Fix issue with Ruby health `latest_gem` determinationAlex Genco2017-06-17
| | | | | | | Sometimes the `gem list` command used for finding the latest version of the `neovim` gem prints an error, which can throw off the `split()` call due to extra parenthesis. This locks down the split pattern to make conflicts less likely.
* provider/clipboard: add tmux support (#6894)Xu Cheng2017-06-15
|
* Merge #4700 from AdnoC/keep-default-registerJustin M. Keyes2017-05-31
|\
| * shada: Set the unnamed register to the previous unnamed register on startupAdnoC2017-05-31
| |
* | man.vim: feature-test section (-s) flag #6815raichoo2017-05-26
|/ | | | | Different implementations of `man` might be using different flags for sections.
* man.vim: check for -l flag #6766raichoo2017-05-19
|
* health.vim: Don't lose contents after hide.Justin M. Keyes2017-05-11
|
* health.vim: On error, show a valid shell command.Justin M. Keyes2017-05-11
| | | | | Helped-by: Nikolai Aleksandrovich Pavlov <kp-pav@yandex.ru> Closes #6715
* health.vim: Fix hardcoded `python` name. #6714Edd Barrett2017-05-11
|
* health.vim: Remove sensible.vim advice. (#6709)Justin M. Keyes2017-05-10
| | | sensible.vim now avoids setting ttimeoutlen for nvim.
* man.vim: Fix filename argument in mandoc #6693Matthew Wynn2017-05-08
| | | | | | | Use the -l flag to open a man file. TODO: Does not work on SunOS. Fixes #6683
* Make script_host.rb rubocop-cleanMarco Hinz2017-05-03
| | | | | | | | | | | | | | | | | | Fix the following issues according to rubocop: runtime/autoload/provider/script_host.rb:2:11: C: Prefer single-quoted strings when you don't need string interpolation or special symbols. require "neovim/ruby_provider" ^^^^^^^^^^^^^^^^^^^^^^ runtime/autoload/provider/script_host.rb:5:5: C: Prefer single-quoted strings when you don't need string interpolation or special symbols. "Your neovim RubyGem is missing or out of date. " + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ runtime/autoload/provider/script_host.rb:5:55: C: Use \ instead of + or << to concatenate those strings. "Your neovim RubyGem is missing or out of date. " + runtime/autoload/provider/script_host.rb:6:5: C: Prefer single-quoted strings when you don't need string interpolation or special symbols. "Install the latest version using `gem install neovim`." ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ This commit assumes Ruby 2.0.0+.
* help, man.vim: "outline" (TOC) feature #5169Tommy Allen2017-05-01
|
* vim-patch:3df0173fa6d0Justin M. Keyes2017-05-01
| | | | | | Updated runtime files. https://github.com/vim/vim/commit/3df0173fa6d0418e89ef4e9c1d04a97c92eec27c
* Merge #6615 from justinmk/vim-patchesJustin M. Keyes2017-04-29
|\
| * vim-patch:46fceaaa8d14Justin M. Keyes2017-04-29
| | | | | | | | | | | | Updated runtime files. https://github.com/vim/vim/commit/46fceaaa8d1447a9588736d86eb4908214187b08
* | win: health.vim/check_ruby(): find `gem.cmd` #6608Justin M. Keyes2017-04-29
| | | | | | | | gem.cmd is not found by system(['gem', ...]), pass it to cmd.exe.
* | Merge #6613 from justinmk/vim-patchesJustin M. Keyes2017-04-29
|\|
| * vim-patch:4575876dc865Justin M. Keyes2017-04-29
| | | | | | | | | | | | Updated runtime files. https://github.com/vim/vim/commit/4575876dc865d4160f20d61bd822fbe7cafbec41
| * vim-patch:dc08328821a2Justin M. Keyes2017-04-29
| | | | | | | | | | | | | | | | | | | | | | Updated runtime files. https://github.com/vim/vim/commit/dc08328821a2c11e33dfb1980332e4923ec64fca NA patches: vim-patch:8.0.0028 vim-patch:8.0.0029 vim-patch:8.0.0030
| * vim-patch:2ec618c9feacJustin M. Keyes2017-04-28
| | | | | | | | | | | | Updated runtime files. https://github.com/vim/vim/commit/2ec618c9feac4573b154510236ad8121c77d0eca
| * vim-patch:3e496b0ea319Justin M. Keyes2017-04-28
| | | | | | | | | | | | | | | | | | | | | | Updated runtime files. https://github.com/vim/vim/commit/3e496b0ea31996b665824f45664dee1fdd73c4d0 NA patches: vim-patch:8.0.0015 vim-patch:8.0.0016 vim-patch:177778575148
| * vim-patch:d07969093a9bJustin M. Keyes2017-04-28
| | | | | | | | | | | | Updated runtime files. https://github.com/vim/vim/commit/d07969093a9b3051511c478d71c36de6fc33c0d6
| * vim-patch:8.0.0002Justin M. Keyes2017-04-28
| | | | | | | | | | | | | | | | | | | | | | | | | | Problem: The netrw plugin does not work. Solution: Make it accept version 8.0. https://github.com/vim/vim/commit/9e1e7afc1f29b67fe3721442b49af3b20644a3ee vim-patch:b56e7ff0dbbf Update translations for intro page. https://github.com/vim/vim/commit/b56e7ff0dbbfa85361bdbc5b4a86ff8b57a7acbb
| * vim-patch:89bcfda6834aJustin M. Keyes2017-04-28
| | | | | | | | | | | | Updated runtime files. Remove version checks for Vim older than 6.0. https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
* | health.vim: syntax/style fixes (#6614)Daniel Hahler2017-04-28
|/
* 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: Set 'iskeyword' to that of ft=help.Justin M. Keyes2017-04-19
|
* win: health/provider.vim: check with `.exe` extensionJustin M. Keyes2017-03-28
| | | | Also fix `python_multiple` comparison.
* man.vim: call s:error in man#read_page (#6362)Anmol Sethi2017-03-25
| | | | | The comment is incorrect, s:error does need to be called. I thought the call was unnecessary because it didn't show any message for me but I had shortmess+=F which was hiding the message.
* health.vim: tmux: Try -qvg and -qvgs (#6348)Tommy Allen2017-03-24
|
* rplugin: Call s:LoadRemotePlugins() on startup.Justin M. Keyes2017-03-11
| | | | | | | | | | Dispense with the FuncUndefined/CmdUndefined quasi-optimization. If there are no rplugins, plugin/rplugin.vim takes less than 1ms. Closes #5821 Closes #6250 Helped-by: Qiming zhao <chemzqm@gmail.com>