aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc/vim_diff.txt
Commit message (Collapse)AuthorAge
* doc: deprecate 'highlight'; remove howto.txt (#7497)Justin M. Keyes2017-11-07
|
* docJustin M. Keyes2017-11-06
|
* help, man.vim: change "outline" map to gO (#7405)Justin M. Keyes2017-10-21
|
* doc: replace ":CheckHealth" with ":checkhealth"Justin M. Keyes2017-10-17
|
* syntax: 'cursorline': revert priority change (#7400)Justin M. Keyes2017-10-16
| | | | | ref #7383 reverts d1874ab2821d076397290cc154d87ec2dc352c79 ref #6380
* syntax: 'cursorline': low priority #6380Justin M. Keyes2017-10-07
|
* syntax: 'cursorcolumn', 'colorcolumn': low priority #6380Justin M. Keyes2017-10-07
|
* version: tweak layout, docJustin M. Keyes2017-08-18
|
* Merge #6364 'command-line color hook'Justin M. Keyes2017-08-16
|\
| * Merge branch 'master' into colored-cmdlineZyX2017-08-06
| |\ | |/ |/|
| * Merge branch 'master' into colored-cmdlineZyX2017-07-31
| |\
| * \ Merge branch 'master' into colored-cmdlineZyX2017-07-31
| |\ \
| * | | doc: Update documentationZyX2017-07-26
| | | |
* | | | doc: "terminal" always means "embedded terminal emulator"Justin M. Keyes2017-08-03
| |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Prefer "TUI" where possible to refer to the host terminal. - Remove obsolete tags and ancient TTY exposition. - Establish "terminal" to consistently mean "terminal emulator" in all Nvim documentation. This removes the need for verbose qualifiers in tags and prose. References #6280 References #6803
* | | options: remove ghost of `:set termcap` (#7102)Justin M. Keyes2017-07-31
| |/ |/| | | Closes #6763
* | docJustin M. Keyes2017-07-29
| |
* | menu_get(): docJustin M. Keyes2017-07-28
|/
* doco: Document constant 'term' in more detail.Jonathan de Boyne Pollard2017-07-09
| | | | Also expand the example in term-dependent-settings.
* 'cpoptions': remove "<" flag; ignore <special>Justin M. Keyes2017-07-08
| | | | Closes #6937 "nvim_get_keymap output is unreliable"
* 'cpoptions': remove "k" flagJustin M. Keyes2017-07-08
| | | | | This was already removed in 3baba1e7bc66, except the documentation and CPO_VI entry. find_term_bykeys() is irrelevant to Nvim.
* Merge #6816 'TUI improvements'Justin M. Keyes2017-07-07
|\ | | | | | | | | | | | | Removed these commits (test-suite changes): e2fba01910e0 7c809c4bc708 18e7cd9e9727
| * doco: Note some common $TERM mistakes and how to fix them.Jonathan de Boyne Pollard2017-06-03
| | | | | | | | | | Also explain more clearly the difference between Vim and Nvim when it comes to built-in terminfo entries.
| * doc: Document some more terminal behaviours.Jonathan de Boyne Pollard2017-06-03
| | | | | | | | | | | | | | | | This documents 256-colour and true colour handling, cursor shapes, and scrolling regions. Almost all of these headings are taken from the Vim doco, so that the :help commands that people learn are a transferable skill.
| * doc: Relegate xterm-8bit to a removed feature.Jonathan de Boyne Pollard2017-06-03
| |
* | lua: Add paths from &runtimepath to package.path and package.cpathZyX2017-05-25
|/
* docJustin M. Keyes2017-05-21
|
* Merge #6737 "options: make 'highlight' read-only"Justin M. Keyes2017-05-15
|\
| * options: make 'highlight' read-onlyBjörn Linse2017-05-15
| |
* | Merge #6480 from ZyX-I/colored-cmdline'/input-dictJustin M. Keyes2017-05-13
|\ \ | |/ |/|
| * doc: Add a note to vim_diff.txtZyX2017-05-13
| |
* | doc: Lua (#6722)Justin M. Keyes2017-05-11
|/ | | Closes #6705
* Merge branch 'master' into luaviml'/luaZyX2017-05-08
|\
| * doc: Replace hardcoded TOCs with <M-]> advice.Justin M. Keyes2017-05-01
| |
| * doc: bracketed-paste-modeJustin M. Keyes2017-05-01
| |
| * doc: Removed t_XX options/keycodes. (#6616)Justin M. Keyes2017-04-29
| | | | | | | | | | Closes #4482 TODO: revisit find_key_option_len()
* | Merge branch 'master' into luaviml'/luaZyX2017-04-08
|\|
| * 'listchars': `Whitespace` highlight group #6367Yichao Zhou2017-04-03
| |
| * 'guicursor': Empty means "block cursor in all modes".Justin M. Keyes2017-04-01
| | | | | | | | Also: update default 'guicursor' to match the documentation.
| * Merge #6344 'vim-patch:7.4.2236,7.4.2306'Justin M. Keyes2017-04-01
| |
* | doc: Update vim_diff data regarding ShaDaZyX2017-03-27
| |
* | doc: Update vim_diff.txtZyX2017-03-27
|/
* doc: Replace "For Vim ... Last change ..." headers (#6328)Justin M. Keyes2017-03-21
|
* defaults: 'showcmd', 'belloff', 'ruler'Justin M. Keyes2017-03-16
| | | | | | | | | | | - Vim "unix default" of 'noshowcmd' is serving few users. And it's inconsistent. - 'ruler' and 'belloff=all' improve the out-of-the-box experience. - Continue to use 'noshowcmd' and 'noruler' by default in the functional tests to keep them fast. TODO: Add a "disable slow stuff" command or mapping to address the use-case of a very slow terminal connection.
* doc: eval.txt fixup, README.mdJustin M. Keyes2017-03-13
|
* 'cpoptions': "_" flag to toggle `cw` behaviour #6235raichoo2017-03-10
| | | | | | | | | | | | | | | `cw` and `cW` behave like `ce` and `cE` respectively. This is inconsistent compared to `dw` and `dW`. Introduce a new cpoptions flag "_" to toggle the Vi behavior. Closes #6234 Patch-by: Christian Brabandt <cblists@256bit.org> References: https://github.com/chrisbra/vim-mq-patches/blob/master/cpo_changeword https://groups.google.com/d/msg/vim_use/aaBqT6ECkA4/ALf4odKzEDgJ https://groups.google.com/d/msg/vim_dev/Dpn3xtUF16I/T6JcOPKN6usJ http://www.reddit.com/r/vim/comments/26nut8/why_does_cw_work_like_ce/
* Merge #6137 from justinmk/cmdline-ctrl-rJustin M. Keyes2017-02-19
|\ | | | | cmdline: CTRL-R: Omit trailing ^M character
| * cmdline: CTRL-R: Omit trailing <CR>.Justin M. Keyes2017-02-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The "technically correct" interpretation is to execute the first line that is seen (and this is what happens on middle-click paste in Vim). ^M is only intended to "defuse" the newline, so the user can review it. The parent commit changed the behavior to insert <Space> between lines, but that's a higher-risk change: it is arguably possible that some user *wants* the literal ^M chars when e.g. assigning to a register: :let @a='<C-R>b' To avoid that risk, keep the old behavior and only omit the last ^M. This makes `yy:<C-R>0` nicer at no cost.
| * cmdline: CTRL-R: <Space> instead of CR between lines.Justin M. Keyes2017-02-18
| | | | | | | | | | | | | | | | | | ^M isn't any more "correct" than space: the "technically correct" interpretation is to execute the first line that is seen (and this is what happens on middle-click paste in Vim). ^M is only intended to defuse the newline, so that the user can review the command. We can do that with a space instead, and then the command can be executed without having to fix it up first.
* | options: Remove 'esckeys' (#6138)Justin M. Keyes2017-02-18
|/ | | This was never supported and it does not make sense for Nvim.
* eval: Add id() function and make printf("%p") return something useful (#6095)Nikolai Aleksandrovich Pavlov2017-02-11
|