aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc
Commit message (Collapse)AuthorAge
...
| * documentation: Describe forward compatibility limitationsZyX2015-10-08
| |
| * shada,documentation: Extend read error handling, handle write errorsZyX2015-10-08
| | | | | | | | | | | | | | | | Modifications: - If file was not written due to write error then writing stops and temporary file will not be renamed. - If NeoVim detects that target file is not a ShaDa file then temporary file will not be renamed.
| * documentation: Document ShaDa compatibility featuresZyX2015-10-08
| |
| * shada: Translate errors and add error codesZyX2015-10-08
| | | | | | | | | | | | | | | | | | | | Notes: - E136 code greatly changed its meaning: now it is write error and not read error. - E195 was removed because shada_read_everything will already do all the necessary error reporting. - E886 can be reported by both :rshada and :wshada, but :rshada comes first and AFAIR it is the only error which is not E575 and can be reported by :rshada.
| * documentation: Document how ShaDa entries should be mergedZyX2015-10-08
| |
| * Deprecate &viminfo and :[rw]v, add &shada and :[rw]shZyX2015-10-08
| |
| * Replace references to viminfo in various placesZyX2015-10-08
| |
| * documentation: Update documentationZyX2015-10-08
| |
| * viminfo: First version of ShaDa file dumpingZyX2015-10-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | What works: 1. ShaDa file dumping: header, registers, jump list, history, search patterns, substitute strings, variables. 2. ShaDa file reading: registers, global marks, variables. Most was not tested. TODO: 1. Merging. 2. Reading history, local marks, jump and buffer lists. 3. Documentation update. 4. Converting some data from &encoding. 5. Safer variant of dumping viminfo (dump to temporary file then rename). 6. Removing old viminfo code (currently masked with `#if 0` in a ShaDa file for reference).
* | doc: drop obsolete 'langnoremap' section. #3448Ben Noordhuis2015-10-11
| | | | | | | | | | | | | | | | | | | | Commit e3568364 ("default: enable 'langnoremap'. #2853") enabled it by default but forgot to remove the lines saying it's disabled by default. tweaked by Michael Reed Reviewed-by: Felipe Morales <hel.sheep@gmail.com> [ci skip]
* | vim-patch:8feef4f #3444rosston2015-10-11
|/ | | | | | Update runtime files. https://github.com/vim/vim/commit/8feef4ff6253afb9dcc61c40082ed4fbb96b685c
* api: represent api type String as msgpack type STR. closes #1250Björn Linse2015-10-08
|
* eval/string(): Share code between msgpackdump() and string()+:echoZyX2015-09-30
|
* defaults: revert wildmode to 'full'Felipe Morales2015-09-26
|
* 'keywordprg': support ex commandsJustin M. Keyes2015-09-23
| | | | | | - new feature: if the first character of 'keywordprg' is ":", the command is invoked as a Vim ex-command prefixed with [count]. - change default 'keywordprg' to :Man
* 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
|
* 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>
* 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
* 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>
* 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
| |
* | 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
* | | 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>
* | | Remove ':Print' command #3049Michael Reed2015-07-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There's no way this isn't some long-running joke: "Just as ':print'. Was apparently added to Vi for people that keep the shift key pressed too long..." Note: A user command can overrule this command. Regarding ':X': the command has been removed for a while, but the documentation must have been missed, so remove it here. Reviewed-by: Justin M. Keyes <justinkz@gmail.com> Helped-by: @jusga
* | | defaults: set 'history' to 10000 by default. #2868Felipe Morales2015-07-20
| | | | | | | | | | | | | | | | | | Note: the new history value is the max allowed. Re: https://github.com/neovim/neovim/issues/2676
* | | Remove POSIX 'cpoptions': cleanupMichael Reed2015-07-19
| | | | | | | | | | | | | | | | | | - CPO_ALL and CPO_VI are identical, so merge them - No longer check for the environment variable 'VIM_POSIX' - In vim_diff.txt, mention the removal of 'cpoptions' flags
* | | Remove POSIX 'cpoptions': '\'Michael Reed2015-07-19
| | |
* | | Remove POSIX 'cpoptions': '.'Michael Reed2015-07-19
| | |
* | | Remove POSIX 'cpoptions': '/'Michael Reed2015-07-19
| | |
* | | Remove POSIX 'cpoptions': '&'Michael Reed2015-07-19
| | |
* | | Remove POSIX 'cpoptions': '|'Michael Reed2015-07-19
| | | | | | | | | | | | | | | It wasn't even hooked up to anything... must have been removed when term.c was replaced.