aboutsummaryrefslogtreecommitdiff
path: root/runtime
Commit message (Collapse)AuthorAge
* Merge pull request #3353 from yagebu/docs-miscJustin M. Keyes2015-09-17
|\ | | | | docs cleanup: misc
| * options: unify undolevels defaultJakob Schnitzer2015-09-17
| | | | | | | | | | Considering Nvim's supported platforms, having a different default for (!Unix and !Windows) doesn't seem very useful.
| * doc: mark 'toolbar' and 'toolbariconsize' as removed.Jakob Schnitzer2015-09-17
| | | | | | | | | | These options have been removed from the code, so also mark them as removed in the docs
| * doc: feature-refs cleanupJakob Schnitzer2015-09-17
| |
* | provider/pythonx: Improve detection code and error messages.Florian Walch2015-09-17
|/ | | | | | | | | | | | | | | | | | | | | | | | | | "python -c" returns 1 in case of an error. Use a return code of 2 if the Neovim module is not found to distinguish these cases. Verify the interpreter version before checking for an installed Neovim module. Show a new error message if the Python interpreter version is below the minimum required version. Always use "pkgutil" to determine if the Neovim module is installed. In contrast to "importlib", which was used for Python 3, "pkgutil.find_loader" is available for all Python versions [1,2]. "pkgutil.find_loader" internally uses "importlib" for Python >= 3.3 [2]. Also, the previously used "importlib.find_loader" is only available since Python 3.3 (so checking the major Python version was not enough) and deprecated since Python 3.4 [3]. Finally, conditioning on the major version in Vimscript was incorrect, as checking the Neovim module for a certain Python major version does not mean that the tested interpreters are actually of that version. For example, we test the "python" executable, which is Python 2 on Ubuntu and Python 3 on Arch Linux. [1] https://docs.python.org/2/library/pkgutil.html#pkgutil.find_loader [2] https://docs.python.org/3/library/pkgutil.html#pkgutil.find_loader [3] https://docs.python.org/3/library/importlib.html#importlib.find_loader
* host.vim: expand $MYVIMRC. #3342Jonathan Skeate2015-09-14
| | | | | | | | | | | | According to the vim helpfile: > fnamemodify({fname}, {mods}) > ... > Note: Environment variables don't work in {fname}, use > expand() first then. So this causes issues if your $MYVIMRC contains environment variables (e.g. $XDG_CONFIG_HOME)
* python: remove current working directory from pathJakob Schnitzer2015-09-14
| | | | | | | | | | Before, running Nvim in a directory containing a Python module `neovim`, or one that is imported by it or a plugin, will load that module and not the system one. So Nvim might be tricked into running arbitrary scripts from the current working directory. Fixes #1665 Fixes #2530
* runtime: remove dvorak macro #3325Justin M. Keyes2015-09-10
| | | | | This macro does the same thing as `set keymap=dvorak`, so it serves no purpose.
* doc: 'encoding'Justin M. Keyes2015-09-09
|
* encoding: update docs for encodingBjörn Linse2015-09-08
| | | | | Helped-By: Michael Reed <m.reed@mykolab.com> Helped-By: Justin M. Keyes <justinkz@gmail.com>
* vim-patch:7.4.602oni-link2015-09-06
| | | | | | | Problem: ":set" does not accept hex numbers as documented. Solution: Use vim_str2nr(). (ZyX) https://github.com/vim/vim/commit/18400e6430755c97eb7e31525ab4744502603731
* doc: fix some typos in nvim docs #3280Aaron O'Leary2015-09-01
| | | | Reviewed-by: Michael Reed <Pyrohh@users.noreply.github.com>
* runtime: `::` token is valid in C#. #3144Jerome Leclanche2015-08-31
| | | | https://msdn.microsoft.com/en-us/library/c3ay4x3d.aspx
* runtime: fix for python highlighting #3154Victor Adam2015-08-31
| | | | | | | """\"""" was highlighted incorrectly. The fix is simply adding skip=+\\["']+ to the syntax of triple-quoted strings. Closes #3151
* doc: termopen(): remove 'name' feature.Justin M. Keyes2015-08-30
|
* defaults: set 'laststatus' to 2. #2876Felipe Morales2015-08-24
|
* defaults: set 'listchars' to "tab:> ,trail:-,nbsp:+". #2872Felipe Morales2015-08-22
| | | | Re: https://github.com/neovim/neovim/issues/2676
* provider/pythonx.vim: Use shell-agnostic construction. #3190sanmiguel2015-08-21
|
* Merge pull request #3203 from jamessan/vim-7.4.813Justin M. Keyes2015-08-20
|\ | | | | Add getcharsearch() and setcharsearch()
| * 7.4.813James McCoy2015-08-20
| | | | | | | | | | | | | | | | | | | | | | patch 7.4.813 Problem: It is not possible to save and restore character search state. Solution: Add getcharsearch() and setcharsearch(). (James McCoy) https://github.com/vim/vim/releases/tag/v7.4.813 https://github.com/vim/vim/releases/tag/v7.4.826 Signed-off-by: James McCoy <vega.james@gmail.com>
* | runtime: When generating helptags run NeoVim in headless modeZyX2015-08-19
|/ | | | | | I see that problem fixed by #2801 was resurrected by making help tags file generated in a more direct way. This fixes the hang without using the empty file.
* Merge pull request #2910 from blueyed/python-fix-path_hookJustin M. Keyes2015-08-17
|\ | | | | Python: fixes for sys.path_hooks handler
| * python: VimPathFinder: remove unused load_module methodDaniel Hahler2015-07-09
| | | | | | | | This method was not used, but `VimModuleLoader.load_module` is.
| * python: path_hook: properly implement PEP302Daniel Hahler2015-07-09
| | | | | | | | | | | | | | | | | | | | | | The path hook used to load the module already in the `find_module` hook. This caused different behaviour between Python 2.7 and 3.3, where the former would call the `VimModuleLoader`, while Python 3.3 appears to short-circuited this (because the module was loaded already). This patch will now only find the module, but not load it in the `find_module` hook.
| * python: VimModuleLoader: check sys.modules[fullname]Daniel Hahler2015-07-09
| | | | | | | | This is required by PEP302 for `reload()`ing modules.
| * python: VimPathFinder: use find_spec for Python 3.4Daniel Hahler2015-07-09
| | | | | | | | Fixes https://github.com/neovim/neovim/issues/2909
* | tutor: avoid 'wildignore' painJustin M. Keyes2015-08-16
| |
* | install tutorial files #3180Felipe Morales2015-08-16
| |
* | Merge pull request #2700 from fmoralesc/vim-tutor-modeJustin M. Keyes2015-08-15
|\ \ | | | | | | runtime: Include vim-tutor-mode
| * | runtime: Include vim-tutor-modeFelipe Morales2015-08-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | vim-tutor-mode provides a mechanism to write and read interactive tutorials in vim. It's aim is to replace the venerable vimtutor with a more modern system. The plugin's development is maintained at https://github.com/fmoralesc /vim-tutor-mode Closes #2351.
* | | doc: Fix typo in nvim-python. #3162Daniel Kosinski2015-08-12
| | |
* | | runtime: Do install generated syntax file, also test this. #3160ZyX2015-08-11
| | | | | | | | | | | | Fixes #3157
* | | clipboard: remove documentation for unsupported optionsBjörn Linse2015-08-07
| | | | | | | | | | | | Both these were relevant only to the old gui implementation.
* | | clipboard: support clipboard=unnamedplus,unnamedBjörn Linse2015-08-07
| | |
* | | documentation: Replace undefined help tagZyX2015-08-06
| | |
* | | documentation: Fix special dictionary value key nameZyX2015-08-06
| | |
* | | doc: Fix nit in previous commitMichael Reed2015-08-04
| | | | | | | | | | | | ...sorry
* | | doc: Add transition instructions to nvim_from_vim.txtFlorian Walch2015-08-04
| | | | | | | | | | | | | | | | | | | | | Also move introduction to Nvim and topic overview to nvim.txt. Reviewed-by: Michael Reed <Pyrohh@users.noreply.github.com> Reviewed-by: Justin M. Keyes <justinkz@gmail.com>
* | | Merge pull request #3034 from ZyX-I/msgpack-evalJustin M. Keyes2015-08-03
|\ \ \ | | | | | | | | msgpack viml functions for dump/restore
| * | | documentation: Add {Nvim} tag to new functionsZyX2015-08-02
| | | |
| * | | eval: Remove most of msgpack* functions limitationsZyX2015-08-02
| | | |
| * | | eval: Add msgpackparse and msgpackdump functionsZyX2015-08-02
| | | |
* | | | vim-patch:5d89d9b #2922Justin Gassner2015-08-02
| | | | | | | | | | | | | | | | | | | | | | | | Update runtime files. https://code.google.com/p/vim/source/detail?r=5d89d9b40499059e1a64dc35fbae94313fba0098
* | | | runtime: Remove duplicates and garbage from installationZyX2015-07-27
| | | |
* | | | Merge pull request #2288 from ZyX-I/autovimsynJustin M. Keyes2015-07-26
|\ \ \ \ | | | | | | | | | | Move part of syntax/vim.vim to syntax/vim/generated.vim
| * | | | syntax: Restore vim-specific highlight groupsZyX2015-07-26
| | | | |
| * | | | cmake: Run nvim that generates helptags with proper WORKING_DIRECTORYZyX2015-07-26
| | | | |
| * | | | cmake: Generate tags and some vim syntax elementsZyX2015-07-26
| | | | |
* | | | | documentation: Document changesZyX2015-07-26
|/ / / /
* | | | Doc: add bracketed-paste-mode #3028Marco Hinz2015-07-21
| | | | | | | | | | | | | | | | | | | | | | | | Reviewed-by: Felipe Morales <hel.sheep@gmail.com> Reviewed-by: Justin M. Keyes <justinkz@gmail.com> Reviewed-by: Michael Reed <Pyrohh@users.noreply.github.com>