aboutsummaryrefslogtreecommitdiff
path: root/runtime
Commit message (Collapse)AuthorAge
* Add TermClose eventMarco Hinz2015-11-15
| | | | | | | | A terminal buffer now exits with: [Process exited <return value>] You can hook into it. E.g. :au TermClose * call feedkeys('<cr>') Closes #2293.
* vim_diff: Fix incorrect ShaDa pathJohannes Löthberg2015-11-14
| | | | Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
* Doc: minor fix for ":ls u"Bohr Shaw2015-11-12
| | | | | | This fixes a typo that was already contained in the original Vim patch: https://github.com/vim/vim/commit/d51cb706a4e3ae99555bc214a64c83603c701139
* Merge pull request #3651 from mhinz/remove-nvimrc-refsJustin M. Keyes2015-11-11
|\ | | | | Remove all invalid nvimrc references
| * Remove all invalid nvimrc and ngvimrc referencesMarco Hinz2015-11-11
| | | | | | | | | | | | | | | | | | | | "vimrc" refers to all files that are used to configure Neovim. The main configuration file is init.vim nowadays. All nvimrc references that are left refer to a local ".nvimrc" which is read if 'exrc' is set. ".ngvimrc" references were completely wiped. Closes #3552.
* | vim-patch:7.4.791 #3078Marco Hinz2015-11-11
| | | | | | | | | | | | | | | | Problem: The buffer list can be very long. Solution: Add an argument to ":ls" to specify the type of buffer to list. (Marcin Szamotulski) https://github.com/vim/vim/commit/d51cb706a4e3ae99555bc214a64c83603c701139
* | Merge pull request #3652 from Pyrohh/rm-os-macMichael Reed2015-11-11
|\ \ | | | | | | [RDY] Remove os_mac.txt
| * | doc: Nuke os_mac.txtMichael Reed2015-11-11
| |/ | | | | | | | | | | Pretty much all of this stuff is outdated. Reviewed-by: @justinmk
* / Be more explicit about the lack of X11 integrationMichael Reed2015-11-10
|/ | | | | I don't want anyone getting the idea that the `-X` flag they might have used has anything to do with why the `+` is working for them
* Add file selection prompt on ":oldfiles!"Marco Hinz2015-11-10
| | | | | | | | :browse was removed for good, but some people miss ":browse oldfiles". The same functionality is now provided by ":oldfiles!". Helped-by: @Pyrohh
* Add ":profile stop"Marco Hinz2015-11-10
| | | | This writes the logfile and stops profiling.
* Add ":profile dump"Marco Hinz2015-11-10
| | | | | Currently the logfile (":profile start {logfile}") only gets written when Vim exits. This new command allows to dump the log immediately without exiting.
* eval: Implement dictionary change notificationsThiago de Arruda2015-11-09
|
* vim-patch:7.4.686 #3629Johan Klokkhammer Helsing2015-11-08
| | | | | | | | Problem: "zr" and "zm" do not take a count. Solution: Implement the count, restrict the fold level to the maximum nesting depth. (Marcin Szamotulski) https://github.com/vim/vim/commit/7d2757a47204d00cd47e3db94f1bd248c499d4e3
* Update runtime/syntax/css.vimMarco Hinz2015-11-08
| | | | This file was missing from the previous runtime update (975a610).
* vim-patch:f2571c6Marco Hinz2015-11-08
| | | | | | Update runtime files. References #3625.
* Merge pull request #3622 from Sean1708/patch-1Michael Reed2015-11-07
|\ | | | | [RFC] Fix doc discrepancy in 'complete' defaults.
| * doc: Remove example in 'complete' doc.Sean Marshallsay2015-11-07
| | | | | | | | | | The example needlessly replicates information and using the defaults causes discrepancies to occur over time.
* | Remove :open commandMichael Reed2015-11-07
|/ | | | | | | | | | | | | | | | | | | | | From the documentation itself: :[range]o[pen] Works like |:visual|: end Ex mode. {Vi: start editing in open mode} ... Vim does not support open mode, since it's not really useful. For those situations where ":open" would start open mode Vim will leave Ex mode, which allows executing the same commands, but updates the whole screen instead of only one line. Part of the reason behind this is to make removing vi_diff.txt easier, although it's also because :open is not too useful. Helped-by: @fdinoff Helped-by: @dsummersl Helped-by: @mhinz Helped-by: @justinmk
* doc: remove balloon options. #3524Victor Adam2015-11-07
|
* docJustin M. Keyes2015-11-07
| | | | | | | | - design-not. Closes #2940 - :terminal - vim_diff: 'termencoding' footnote - 'shada'. Closes #3619 - eval.txt: job* functions list. Closes #3222
* runtime/autoload/provider/python{,3}.vim: fix E168Daniel Hahler2015-11-03
| | | | Do not use `finish` inside of `provider#python{,3}#Call`, but `return`.
* Merge pull request #3570 from srobbibaro/srobbibaro/doc-updateMichael Reed2015-10-31
|\ | | | | [RFC] Update terminal documentation for clarity
| * Update terminal documentation for claritySteve Robbibaro2015-10-31
| | | | | | | | | | | | A couple lines tripped me up while reading through this document for the first time. This change aims to reword/rework these areas, so that they are clearer on the first read.
* | doc: Fix lint warningMichael Reed2015-10-31
| | | | | | | | found with `gmake html'
* | doc: Nuke os_unix.txtMichael Reed2015-10-31
|/ | | | | | | | All of this information is a combination of incorrect, outdated, or redundant given its availability in other help files. Reviewed-by: Justin M. Keyes <justinkz@gmail.com> Reviewed-by: Felipe Morales <hel.sheep@gmail.com>
* documentation: Fix &undodir defaultZyX2015-10-30
|
* undo: Automatically create undo directory if neededZyX2015-10-29
|
* option: Add current directory to &backupdir optionZyX2015-10-29
| | | | Fixes #3496
* spellfile: follow the XDG specFelipe Morales2015-10-28
| | | | Closes #3535
* tutor: fix typoFelipe Morales2015-10-26
|
* tutor: fix location for init.vim fileFelipe Morales2015-10-26
|
* vim-patch:7.4.849Justin M. Keyes2015-10-26
| | | | | | | | | | Problem: Moving the cursor in Insert mode starts new undo sequence. Solution: Add CTRL-G U to keep the undo sequence for the following cursor movement command. (Christian Brabandt) https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309 Closes #3492
* Merge pull request #3470 from ZyX-I/pr-3198Justin M. Keyes2015-10-25
|\ | | | | XDG base directory specification support
| * documentation: Update documentation regarding init.vim locationZyX2015-10-24
| |
| * memline: Automatically create swap file directory for last directoryZyX2015-10-23
| |
| * main,version: Remove USR_EXRC_FILE*ZyX2015-10-23
| |
| * documentation: Update documentationZyX2015-10-23
| | | | | | | | | | | | | | Note about ~/.local/share/nvim/site used in one usr_\* file: this one talks about user-local installation of third-party plugins, and ~/.local/share/nvim/site is the proper place for them. Most other files talk about user own configuration and this is ~/.config.
| * option: Use proper printexprZyX2015-10-23
| |
* | documentation: Fix :delmarks! documentationZyX2015-10-23
| | | | | | | | | | :delmarks! clears the change list, but this fact is not mentioned. Also true for Vim.
* | shada: Run set_last_cursor before writing shada fileZyX2015-10-23
|/
* vim-patch:7.4.793Johan Klokkhammer Helsing2015-10-18
| | | | | | | Problem: Can't specify when not to ring the bell. Solution: Add the 'belloff' option. (Christian Brabandt) https://github.com/vim/vim/commit/165bc69d1b7f70ca9d5b657f35d0584ecb7b5183
* Merge pull request #2506 from ZyX-I/shadaJustin M. Keyes2015-10-16
|\ | | | | Replace viminfo with ShaDa files
| * documentation: Disambiguate ShaDa abbreviationZyX2015-10-08
| |
| * shada: When using shada-r normalize option pathZyX2015-10-08
| |
| * shada: First write temporary file and only then check any permissionsZyX2015-10-08
| | | | | | | | | | | | It is not logical that on UNIX permissions can prevent even writing temporary file, while on other OS it will first write temporary file and then fail during rename.
| * documentation: Extend shada error handling documentationZyX2015-10-08
| |
| * documentation/functests: Replace NeoVim with NeovimZyX2015-10-08
| |
| * shada: Add generator key to the headerZyX2015-10-08
| | | | | | | | | | For use in viminfo→shada converters, plugins that allow editing ShaDa files or any other software which generates ShaDa files for whatever purpose.
| * documentation: Update vim differences list, reference critical errorsZyX2015-10-08
| |