aboutsummaryrefslogtreecommitdiff
path: root/man
Commit message (Collapse)AuthorAge
* man: fix description of XDG_DATA_HOME (#5120)E Kawashima2016-07-27
| | | If not set `XDG_DATA_HOME` is defaulted to `~/.local/share`; the data are stored under the `$XDG_DATA_HOME/nvim`.
* 'termguicolors' #4690Shougo Matsushita2016-05-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | TODO: Only works at startup (i.e., in the user's init.vim/vimrc/--cmd), but it should probably work at any time. --- patch 7.4.1799 Problem: 'guicolors' is a confusing option name. Solution: Use 'termguicolors' instead. (Hirohito Higashi) https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162 patch 7.4.1806 Problem: 'termguicolors' option missing from the options window. Solution: Add the entry. https://github.com/vim/vim/commit/8e3d1b6326c103cc92f8d07b1161ee5172acf201 patch 7.4.1808 Problem: Using wrong feature name to check for 'termguicolors'. Solution: Use the right feature name. (Ken Takata) https://github.com/vim/vim/commit/8a24b794b89916c8074892e7b25121a21f1fa9c9 patch 7.4.1809 Problem: Using wrong short option name for 'termguicolors'. Solution: Use the option name. https://github.com/vim/vim/commit/868cfc19bb079a16ca58884b551486566f35419b
* Do not use TMUX_WRAP for DECSCUSR sequenceDaniel Hahler2016-01-29
| | | | | | | | | | | Wrapping it will send it to the terminal "directly", which might change the cursor of another pane, e.g. when starting Neovim and changing to another pane directly. tmux has a terminfo extension (Ss/Se) to handle and translate the DECSCUSR sequences internally. This can be controlled through `terminal-overrides`, but does not appear to be able to handle the uncommon sequences for Konsole.
* misc: UNIX => Unix #4022Seth Jackson2016-01-16
| | | | | | | | | | Although UNIX is a registered trademark of The Open Group, it doesn't really matter whether we refer to these systems as UNIX, Unix, or Unix-like. So, for consistency, refer to them collectively as Unix. Related: http://www.greens.org/about/unix.html http://www.unixica.com/html/unixunix.html
* 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.
* nvim.1: XDG updateMichael Reed2015-10-27
| | | | | Helped-by: Justin M. Keyes <justinkz@gmail.com> Helped-by: ZyX <kp-pav@yandex.ru>
* nvim.1: bump dateMichael Reed2015-10-17
|
* Replace references to viminfo in various placesZyX2015-10-08
|
* nvim.1: Misc. improvements (2)Michael Reed2015-08-26
| | | | | | | | | | | | | | | | | Besides some minor rewording, this commit does the following: - the argument to the `q' flag is optional, so denote it as such - the cross references to vim (`.Xr vim 1') were pointless, just refer to it as `Vim' - the `d' flag doesn't actually take any arguments; `nvim -d' works just fine, so make the manual reflect that - the `L' flag is just an alias for the `r' flag, so clarify that - there was a lot of redundancy between the `o', `O', and `p' flags, unify their descriptions a bit Helped-by: Justin M. Keyes <justinkz@gmail.com> [ci skip]
* man: Bump nvim.1 date, add Makefile for authoringMichael Reed2015-06-26
| | | | | igor(1) checks if the document date is today, so this should prevent forgetting to bump the date in the future.
* Remove outdated and unused manuals #2891Michael Reed2015-06-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | `nvim-[lang].1`: The non-english manuals are completely outdated and still written in roff, as opposed to mdoc, which is used for `nvim.1`. Given that, they're nearly useless at the moment, and when/if they are updated, they should probably be rewritten from scratch using `nvim.1` as a reference. `xxd*.1`: xxd hasn't been in the source tree for a long time, so the manual is of little use. `nvimtutor*.1`: The vimtutor script hasn't ever shipped with nvim, and the consensus seems to be that it won't, at least in the form of an executable installed alongside `$(PREFIX)/bin/nvim` (see #2700). In `nvim.1`, the argument to the `.Os` macro was removed. This was done because its only purpose was to signify that nvim and nvimtutor were part of the "Neovim" distribution, i.e., one and the same, which isn't applicable anymore because `nvimtutor.1` is being removed. From the `.Os` documentation in `man mdoc`: Os Operating system version for display in the page footer. This is the mandatory third macro of any mdoc file. Its syntax is as follows: .Os [system [version]] The optional system parameter specifies the relevant operating system or environment. It is suggested to leave it unspecified, in which case mandoc(1) uses its -Ios argument or, if that isn't specified either, sysname and release as returned by uname(3). Examples: .Os .Os KTH/CSC/TCS .Os BSD 4.3 See also Dd and Dt. Reviewed-by: Felipe Morales <hel.sheep@gmail.com> Reviewed-by: Florian Walch <florian@fwalch.com> Reviewed-by: Justin M. Keyes <justinkz@gmail.com> [ci skip]
* nvim.1: Misc. improvements #2758Michael Reed2015-05-30
| | | | | | | | | | | | | | | | Prefer typographic single quotes instead of straight double quotes. This avoids confusion when double quotes are used as part of arguments. Annotate EOF as a "defined variable". Assuming mandoc is used, `apropos Dv=EOF` should now work. Clarify in parentheses what a hyphen is, as users might only know it as a "dash". The same was already done for colons. Group environment variables more logically. Reviewed-by: Felipe Morales <hel.sheep@gmail.com> Reviewed-by: Ian Ker-Seymer <i.kerseymer@gmail.com>
* Remove `-T` command-line optionMichael Reed2015-05-18
| | | | | | | It didn't actually do anything after 3baba1e7bc6698e6bc9f1d37fce88b30d6274bc9 Helped-by: Justin M. Keyes <justinkz@gmail.com>
* Manual pages: Fix incorrect environment variable referencesMichael Reed2015-05-17
| | | | This was done prematurely for #2569, but obviously forgotten about.
* English man pages: Convert to mdoc and rewrite for NvimMichael Reed2015-05-13
| | | | | | | Helped-by: Felipe Morales <hel.sheep@gmail.com> Helped-by: Scott Prager <splinterofchaos@gmail.com> Helped-by: Justin M. Keyes <justinkz@gmail.com> Helped-by: Jakob Schnitzer <mail@jakobschnitzer.de>
* Man pages: Move to nvim namespace and out of `runtime/`Michael Reed2015-05-13
Also clean up man page references in `runtime/doc/Makefile` as it doesn't deal with them anymore.