aboutsummaryrefslogtreecommitdiff
path: root/runtime
Commit message (Collapse)AuthorAge
* Update vimrc_example fileFelipe Morales2015-06-29
| | | | | Because of recent work on defaults (see https://github.com/neovim/neovim/issues/2676)
* doc: Fix undefined reference warningMichael Reed2015-06-28
|
* plugin/matchit: create stub for matchit.vim #2921Felipe Morales2015-06-28
| | | | | | | Re: compatibility issues with users doing `:so $VIMRUNTIME/macros/matchit.vim` Fixes #2918
* doc: Remove usr_90.txtMichael Reed2015-06-27
| | | | | - It's severely outdated - We already have (up to date) installation instructions on the wiki
* clipboard: avoid redundant error message on `clipboard_get` failure .Björn Linse2015-06-25
| | | | | | Fixes #2712 Helped-By: Michael Reed <m.reed@mykolab.com>
* clipboard: keep track of ownership and cache clipboard data locallyBjörn Linse2015-06-25
| | | | Helped-By: Justin M. Keyes <justinkz@gmail.com>
* clipboard: don't use &shell in clipboard providerBjörn Linse2015-06-25
|
* rplugin: allow users to register hosts #2896Nick Hynes2015-06-25
|
* doc: Various #2898Michael Reed2015-06-24
| | | | | | | | | refs #2895 Helped-by: Bohr Shaw <pubohr@gmail.com> Helped-by: Justin M. Keyes <justinkz@gmail.com> [ci skip]
* doc: Revise for flow and consistency #2831alecbrooks2015-06-24
| | | | | | In general, attempt to make things more concise. Reviewed-by: Michael Reed <m.reed@mykolab.com>
* doc: vim_diff: clarify key-chord support. #2886Justin M. Keyes2015-06-24
|
* defaults: remove "options" in 'sessionoptions'. #2871Felipe Morales2015-06-21
| | | | Re: https://github.com/neovim/neovim/issues/2676
* defaults: prefix "!" to 'viminfo' by default #2870Felipe Morales2015-06-21
| | | | Re: https://github.com/neovim/neovim/issues/2676
* defaults: set 'tabpagemax' to 50 by default. #2869Felipe Morales2015-06-21
| | | | Re: https://github.com/neovim/neovim/issues/2676
* defaults: set 'display' to "lastline" by default.Felipe Morales2015-06-21
| | | | Re: https://github.com/neovim/neovim/issues/2676
* doc: Fix some typos and trailing whitespace. #2875Lucas Hoffmann2015-06-21
|
* defaults: enable 'hlsearch' by default. #2859Justin M. Keyes2015-06-20
| | | | | | Also update the documentation regarding the option. Re: https://github.com/neovim/neovim/issues/2676
* defaults: enable 'incsearch' by default. #2858Felipe Morales2015-06-20
| | | | | | This also updates the documentation about 'incsearch'. Re: https://github.com/neovim/neovim/issues/2676
* defaults: remove "i" from the default 'complete' #2854Felipe Morales2015-06-20
| | | | | | "i" could slow down the completion. Re: https://github.com/neovim/neovim/issues/2676
* default: enable 'langnoremap'. #2853Felipe Morales2015-06-20
| | | | Re: https://github.com/neovim/neovim/issues/2676
* defaults: set 'mouse' to 'a' by default. #2860Felipe Morales2015-06-20
| | | | | | Re: https://github.com/neovim/neovim/issues/2676 Also, some documentation changes.
* defaults: enable 'autoindent' #2857Felipe Morales2015-06-20
| | | | Re: https://github.com/neovim/neovim/issues/2676
* defaults: enable 'autoread' by default #2856Felipe Morales2015-06-20
| | | | Re: https://github.com/neovim/neovim/issues/2676
* defaults: enable 'smarttab' by default. #2855Felipe Morales2015-06-20
|
* provider/pythonx: Show absolute path to executable in error message.Florian Walch2015-06-09
|
* provider/pythonx: Merge s:check_version() and s:check_interpreter().Florian Walch2015-06-09
|
* provider/pythonx: Don't use Python 3 interpreter for +python.Florian Walch2015-06-09
| | | | | | | | | The executable 'python' can refer to either Python 2 or Python 3. Add a check to only accept Python 2 interpreters as providers for +python. Also improve the error messages. Resolves #2734.
* provider/pythonx: return error from DetectDaniel Hahler2015-06-09
| | | | Ref: https://github.com/blueyed/neovim/commit/9b653ce0#commitcomment-11195449
* remote#host#RequirePythonHost: fix reference to logDaniel Hahler2015-06-09
| | | | | | | | I could not find a reference to NVIM_PYTHON_PYTHON_LOG anywhere, and python-client looks for NVIM_PYTHON_LOG_FILE. ~/.nvimlog appears to be hardcoded and enabled by default. This would need to be adjusted when this changes.
* provider/python: Call: fix usage of 'finish' in functionDaniel Hahler2015-06-09
| | | | | Do not call it again in case of an exception in `remote#host#Require` (ref: https://github.com/neovim/neovim/pull/2549#issuecomment-102674350).
* provider/python: define Prog and Error functions alwaysDaniel Hahler2015-06-09
| | | | | | | | `provider#pythonX#Error` and `provider#pythonX#Prog` are currently meant for debugging only (the error message is not being used), and should therefore be defined always, especially in case of errors. Ref: https://github.com/neovim/neovim/pull/2549#issuecomment-98607580
* provider/pythonx: Detect: only return valid versionsDaniel Hahler2015-06-09
| | | | | The `check` return value of `s:check_version` was not being used, and it was returned always.
* provider/pythonx: test python3/2 first, do not test python3.2Daniel Hahler2015-06-09
| | | | | python3/python2 will typically point at the default / most recent interpreter.
* provider/pythonx: add reference to ":help nvim-python" for errorDaniel Hahler2015-06-09
|
* provider/pythonx: fix grammar with errorDaniel Hahler2015-06-09
|
* provider/pythonx: only call system("python") onceDaniel Hahler2015-06-09
| | | | | `s:check_interpreter` will query/return the version also, so that `s:check_version` can just use that, without calling "python" again.
* plugin: enable the matchit plugin by default #2723Felipe Morales2015-06-04
| | | | | Reviewed-by: Scott Prager <splinterofchaos@gmail.com> Reviewed-by: Michael Reed <m.reed@mykolab.com>
* Add noinsert and noselect features in completeopt #2564Shougo Matsushita2015-06-04
| | | | | | | | | | | | Backported from vim_dev: https://groups.google.com/forum/#!searchin/vim_dev/completeopt/vim_dev/tVsk0pdOGvs/fCzBbPkA4w0J Use case: https://github.com/Shougo/neocomplcache.vim/issues/426 Reviewed-by: Felipe Morales <hel.sheep@gmail.com> Reviewed-by: Scott Prager <splinterofchaos@gmail.com> Reviewed-by: Michael Reed <m.reed@mykolab.com>
* doc: Misc. X11-related cleanupsMichael Reed2015-06-01
| | | | | | | These were all introduced by the previous commit, and spotted with with `make html` in `runtime/doc`. [ci skip]
* doc: starting.txt cleanupMichael Reed2015-06-01
| | | | | | | - Removed mention of many options which don't exist anymore. - Add new tags for some new options (e.g., -v) While here, also remove a few X11 references.
* rplugin: Improve remote plugins detection messages #2769Shougo Matsushita2015-05-31
|
* Remove 'octal' from default value for '&nrformats' #2668Felipe Morales2015-05-29
| | | | | | | | | | <C-A> over "07" should increment to "08" by default. Re: https://github.com/neovim/neovim/issues/1664 Reviewed-by: Justin M. Keyes <justinkz@gmail.com> Reviewed-by: Scott Prager <splinterofchaos@gmail.com> Reviewed-by: Michael Reed <m.reed@mykolab.com>
* 'cpoptions': Remove "j" flagDavid Bürgin2015-05-25
|
* completion: Add v:completed_item feature #2563Shougo Matsushita2015-05-24
| | | | | | | Reviewed-by: Michael Reed <m.reed@mykolab.com> Reviewed-by: Luke Andrew <luke.github@la.id.au> Reviewed-by: Justin M. Keyes <justinkz@gmail.com> Reviewed-by: Florian Walch <florian@fwalch.com>
* 'cpoptions': Remove "-" flag #2655David Bürgin2015-05-21
|
* options: Include "j" in default 'formatoptions' #2669Felipe Morales2015-05-21
|
* vim-patch:f654ad9 #2659Perry Hung2015-05-20
| | | | | | | | Update runtime files. https://code.google.com/p/vim/source/detail?r=f654ad95fd4e25e014dda71963b9745a4bf5f83b Resolves issue #1999.
* options: Search upwards for tags file #2670Felipe Morales2015-05-19
| | | | | | Also remove some references to emacs tags from the docs. References https://github.com/neovim/neovim/issues/1664
* vim-patch:c5d53d4 #2695Florian Walch2015-05-19
| | | | | | Update runtime files. https://code.google.com/p/vim/source/detail?r=c5d53d4c3e2e24e23fc4272bf91be3c031ccb598
* vim-patch:4abac79 #2694Florian Walch2015-05-19
| | | | | | Update runtime files. https://code.google.com/p/vim/source/detail?r=4abac79c0b7ae7aac0cb32d9930e155de628b63f