Marco Hinz 
							
						 
					 
					
						
						
							
						
						089368c15f 
					 
					
						
						
							
							Doc: correct default value  
						
						
						
						
					 
					
						2016-02-15 19:55:51 +01:00 
						 
				 
			
				
					
						
							
							
								Felipe Morales 
							
						 
					 
					
						
						
							
						
						50e129f5a7 
					 
					
						
						
							
							defaults: Enable syntax and filetype plugins.  
						
						
						
						
					 
					
						2016-02-14 15:20:31 -05:00 
						 
				 
			
				
					
						
							
							
								Felipe Morales 
							
						 
					 
					
						
						
							
						
						11f43360d1 
					 
					
						
						
							
							doc: remove references to 'term' and other tty related options.  
						
						... 
						
						
						
						Re: https://github.com/neovim/neovim/issues/4218  
						
						
					 
					
						2016-02-10 16:52:48 +01:00 
						 
				 
			
				
					
						
							
							
								Michael Reed 
							
						 
					 
					
						
						
							
						
						964e52e81f 
					 
					
						
						
							
							Merge pull request  #4009  from sethjackson/swapsync  
						
						... 
						
						
						
						[RFC] Remove 'swapsync' 
						
						
					 
					
						2016-01-14 15:38:19 -05:00 
						 
				 
			
				
					
						
							
							
								Seth Jackson 
							
						 
					 
					
						
						
							
						
						7a7a758786 
					 
					
						
						
							
							doc: Remove references to GTK.  
						
						... 
						
						
						
						We don't support it. 
						
						
					 
					
						2016-01-14 13:16:10 -05:00 
						 
				 
			
				
					
						
							
							
								Seth Jackson 
							
						 
					 
					
						
						
							
						
						62d137ce09 
					 
					
						
						
							
							Remove swapsync.  
						
						... 
						
						
						
						It's complete overkill. 
						
						
					 
					
						2016-01-14 13:13:32 -05:00 
						 
				 
			
				
					
						
							
							
								Seth Jackson 
							
						 
					 
					
						
						
							
						
						d51a27b7e5 
					 
					
						
						
							
							Remove 'restorescreen' option  
						
						... 
						
						
						
						The relevant code was never actually in Neovim, most likely due to being
unifdef(1)'d out during the initial import.
see `:h hidden-options' 
						
						
					 
					
						2016-01-08 14:59:18 -05:00 
						 
				 
			
				
					
						
							
							
								Michael Reed 
							
						 
					 
					
						
						
							
						
						f7c4770572 
					 
					
						
						
							
							Remove 'antialias' remnants  
						
						... 
						
						
						
						It never did anything (see `:h hidden-options`). 
						
						
					 
					
						2015-11-25 14:56:08 -05:00 
						 
				 
			
				
					
						
							
							
								ZyX 
							
						 
					 
					
						
						
							
						
						b98cea909f 
					 
					
						
						
							
							shada: Also store last search direction  
						
						... 
						
						
						
						Note: it looks like viminfo files do not store search direction intentionally.
After reading viminfo file search direction was considered to be “forward”.
Note 2: all files created on earlier Neovim version will automatically receive
“forward” direction.
Fixes  #3580  
						
						
					 
					
						2015-11-23 17:08:01 +03:00 
						 
				 
			
				
					
						
							
							
								Marco Hinz 
							
						 
					 
					
						
						
							
						
						9fcd444036 
					 
					
						
						
							
							Add TermClose event  
						
						... 
						
						
						
						A terminal buffer now exits with: [Process exited <return value>]
You can hook into it. E.g.  :au TermClose * call feedkeys('<cr>')
Closes  #2293 . 
						
						
					 
					
						2015-11-15 15:10:02 +01:00 
						 
				 
			
				
					
						
							
							
								Johannes Löthberg 
							
						 
					 
					
						
						
							
						
						2975e66af4 
					 
					
						
						
							
							vim_diff: Fix incorrect ShaDa path  
						
						... 
						
						
						
						Signed-off-by: Johannes Löthberg <johannes@kyriasis.com > 
						
						
					 
					
						2015-11-14 19:50:45 +01:00 
						 
				 
			
				
					
						
							
							
								Michael Reed 
							
						 
					 
					
						
						
							
						
						2fbcc9ab76 
					 
					
						
						
							
							Be more explicit about the lack of X11 integration  
						
						... 
						
						
						
						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 
						
						
					 
					
						2015-11-10 20:10:55 -05:00 
						 
				 
			
				
					
						
							
							
								Marco Hinz 
							
						 
					 
					
						
						
							
						
						3b12bb225a 
					 
					
						
						
							
							Add file selection prompt on ":oldfiles!"  
						
						... 
						
						
						
						:browse was removed for good, but some people miss ":browse oldfiles".
The same functionality is now provided by ":oldfiles!".
Helped-by: @Pyrohh 
						
						
					 
					
						2015-11-10 03:13:31 +01:00 
						 
				 
			
				
					
						
							
							
								Michael Reed 
							
						 
					 
					
						
						
							
						
						c40dff6453 
					 
					
						
						
							
							Remove :open command  
						
						... 
						
						
						
						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 
						
						
					 
					
						2015-11-07 14:33:10 -05:00 
						 
				 
			
				
					
						
							
							
								Justin M. Keyes 
							
						 
					 
					
						
						
							
						
						120797cf87 
					 
					
						
						
							
							doc  
						
						... 
						
						
						
						- design-not. Closes  #2940 
- :terminal
- vim_diff: 'termencoding' footnote
- 'shada'. Closes  #3619 
- eval.txt: job* functions list. Closes  #3222  
						
						
					 
					
						2015-11-07 00:32:00 -05:00 
						 
				 
			
				
					
						
							
							
								ZyX 
							
						 
					 
					
						
						
							
						
						1cdc3298cf 
					 
					
						
						
							
							documentation: Update documentation  
						
						... 
						
						
						
						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. 
						
						
					 
					
						2015-10-23 14:54:10 +03:00 
						 
				 
			
				
					
						
							
							
								ZyX 
							
						 
					 
					
						
						
							
						
						8f7ddfb9a4 
					 
					
						
						
							
							documentation: Update vim differences list, reference critical errors  
						
						
						
						
					 
					
						2015-10-08 22:00:44 +03:00 
						 
				 
			
				
					
						
							
							
								ZyX 
							
						 
					 
					
						
						
							
						
						f8169ff24d 
					 
					
						
						
							
							documentation: Document ShaDa compatibility features  
						
						
						
						
					 
					
						2015-10-08 22:00:16 +03:00 
						 
				 
			
				
					
						
							
							
								ZyX 
							
						 
					 
					
						
						
							
						
						5e7a7fc2da 
					 
					
						
						
							
							documentation: Document how ShaDa entries should be merged  
						
						
						
						
					 
					
						2015-10-08 22:00:12 +03:00 
						 
				 
			
				
					
						
							
							
								ZyX 
							
						 
					 
					
						
						
							
						
						8663983cc4 
					 
					
						
						
							
							Deprecate &viminfo and :[rw]v, add &shada and :[rw]sh  
						
						
						
						
					 
					
						2015-10-08 22:00:07 +03:00 
						 
				 
			
				
					
						
							
							
								ZyX 
							
						 
					 
					
						
						
							
						
						b7ebd16af0 
					 
					
						
						
							
							documentation: Update documentation  
						
						
						
						
					 
					
						2015-10-08 21:59:56 +03:00 
						 
				 
			
				
					
						
							
							
								ZyX 
							
						 
					 
					
						
						
							
						
						b6fdb7bd0f 
					 
					
						
						
							
							eval/string(): Share code between msgpackdump() and string()+:echo  
						
						
						
						
					 
					
						2015-09-30 10:12:35 +03:00 
						 
				 
			
				
					
						
							
							
								Felipe Morales 
							
						 
					 
					
						
						
							
						
						b927304108 
					 
					
						
						
							
							defaults: revert wildmode to 'full'  
						
						
						
						
					 
					
						2015-09-26 21:09:47 +02:00 
						 
				 
			
				
					
						
							
							
								Jakob Schnitzer 
							
						 
					 
					
						
						
							
						
						e3289e5354 
					 
					
						
						
							
							doc: mark 'toolbar' and 'toolbariconsize' as removed.  
						
						... 
						
						
						
						These options have been removed from the code, so also mark them as
removed in the docs 
						
						
					 
					
						2015-09-17 19:38:24 +02:00 
						 
				 
			
				
					
						
							
							
								Björn Linse 
							
						 
					 
					
						
						
							
						
						e99368104a 
					 
					
						
						
							
							encoding: update docs for encoding  
						
						... 
						
						
						
						Helped-By: Michael Reed <m.reed@mykolab.com >
Helped-By: Justin M. Keyes <justinkz@gmail.com > 
						
						
					 
					
						2015-09-08 10:54:01 +02:00 
						 
				 
			
				
					
						
							
							
								Felipe Morales 
							
						 
					 
					
						
						
							
						
						45121a267f 
					 
					
						
						
							
							defaults: set 'laststatus' to 2.  #2876  
						
						
						
						
					 
					
						2015-08-24 00:48:32 -04:00 
						 
				 
			
				
					
						
							
							
								Felipe Morales 
							
						 
					 
					
						
						
							
						
						be29de1fa2 
					 
					
						
						
							
							defaults: set 'listchars' to "tab:> ,trail:-,nbsp:+".  #2872  
						
						... 
						
						
						
						Re: https://github.com/neovim/neovim/issues/2676  
						
						
					 
					
						2015-08-22 13:48:48 -04:00 
						 
				 
			
				
					
						
							
							
								ZyX 
							
						 
					 
					
						
						
							
						
						01901e0038 
					 
					
						
						
							
							documentation: Document changes  
						
						
						
						
					 
					
						2015-07-26 02:34:32 +03:00 
						 
				 
			
				
					
						
							
							
								Marco Hinz 
							
						 
					 
					
						
						
							
						
						fd740a383a 
					 
					
						
						
							
							Doc: add bracketed-paste-mode  #3028  
						
						... 
						
						
						
						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 > 
						
						
					 
					
						2015-07-21 09:38:18 +02:00 
						 
				 
			
				
					
						
							
							
								Michael Reed 
							
						 
					 
					
						
						
							
						
						4455fc3f05 
					 
					
						
						
							
							Remove ':Print' command  #3049  
						
						... 
						
						
						
						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 
						
						
					 
					
						2015-07-20 20:43:09 -04:00 
						 
				 
			
				
					
						
							
							
								Felipe Morales 
							
						 
					 
					
						
						
							
						
						b4a5871809 
					 
					
						
						
							
							defaults: set 'history' to 10000 by default.  #2868  
						
						... 
						
						
						
						Note: the new history value is the max allowed.
Re: https://github.com/neovim/neovim/issues/2676  
						
						
					 
					
						2015-07-20 03:48:33 -04:00 
						 
				 
			
				
					
						
							
							
								Michael Reed 
							
						 
					 
					
						
						
							
						
						85b7ea9a87 
					 
					
						
						
							
							Remove POSIX 'cpoptions': cleanup  
						
						... 
						
						
						
						- 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 
						
						
					 
					
						2015-07-19 15:14:23 -04:00 
						 
				 
			
				
					
						
							
							
								Michael Reed 
							
						 
					 
					
						
						
							
						
						4d79edccdc 
					 
					
						
						
							
							Cleanup after  #3007   #3020  
						
						... 
						
						
						
						'guioptions' is mentioned in the "Option Defaults" section of vim_diff,
and while its default did indeed change, it was only because the 't'
flag was removed.  To make that clear, move its reference to the
"Removed Features" section instead.
Remove stray instance of 't' flag from GO_ALL.  Most if not all of the
GO_* #defines are unused, but lets keep them for now as it's not clear
whether they won't be used by Nvim GUIs. 
						
						
					 
					
						2015-07-17 17:36:38 -04:00 
						 
				 
			
				
					
						
							
							
								Marco Hinz 
							
						 
					 
					
						
						
							
						
						1e03165074 
					 
					
						
						
							
							Remove :tearoff  #3007  
						
						... 
						
						
						
						This also removes the 't' flag from 'guioptions'.
Side effect: :term[inal] -> :te[rminal]
Closes  #3003 . 
						
						
					 
					
						2015-07-15 22:03:35 -04:00 
						 
				 
			
				
					
						
							
							
								Michael Reed 
							
						 
					 
					
						
						
							
						
						f48c8d652c 
					 
					
						
						
							
							Remove VisualNOS highlight group remnants  
						
						... 
						
						
						
						Nvim hasn't ever had X11 integration, so this has was never needed. 
						
						
					 
					
						2015-07-04 15:43:54 -04:00 
						 
				 
			
				
					
						
							
							
								Michael Reed 
							
						 
					 
					
						
						
							
						
						cadf93e6fc 
					 
					
						
						
							
							Remove 'guipty' references  
						
						... 
						
						
						
						Presumably due to tarruda's unifdefing, it was already a no-op at the
time of nvim's first commit.
It's probably better to be clear that it doesn't exist, as opposed to
users thinking `:set guipty` is doing something when it isn't. 
						
						
					 
					
						2015-07-04 15:43:54 -04:00 
						 
				 
			
				
					
						
							
							
								Michael Reed 
							
						 
					 
					
						
						
							
						
						406e9876b6 
					 
					
						
						
							
							doc: Various  #2898  
						
						... 
						
						
						
						refs #2895 
Helped-by: Bohr Shaw <pubohr@gmail.com >
Helped-by: Justin M. Keyes <justinkz@gmail.com >
[ci skip] 
						
						
					 
					
						2015-06-24 21:43:03 -04:00 
						 
				 
			
				
					
						
							
							
								Justin M. Keyes 
							
						 
					 
					
						
						
							
						
						91fcd33787 
					 
					
						
						
							
							doc: vim_diff: clarify key-chord support.  #2886  
						
						
						
						
					 
					
						2015-06-24 00:43:20 -04:00 
						 
				 
			
				
					
						
							
							
								Felipe Morales 
							
						 
					 
					
						
						
							
						
						6ed6d8d910 
					 
					
						
						
							
							defaults: remove "options" in 'sessionoptions'.  #2871  
						
						... 
						
						
						
						Re: https://github.com/neovim/neovim/issues/2676  
						
						
					 
					
						2015-06-21 03:20:35 -04:00 
						 
				 
			
				
					
						
							
							
								Felipe Morales 
							
						 
					 
					
						
						
							
						
						721ffd6b65 
					 
					
						
						
							
							defaults: prefix "!" to 'viminfo' by default  #2870  
						
						... 
						
						
						
						Re: https://github.com/neovim/neovim/issues/2676  
						
						
					 
					
						2015-06-21 02:06:23 -04:00 
						 
				 
			
				
					
						
							
							
								Felipe Morales 
							
						 
					 
					
						
						
							
						
						8963285530 
					 
					
						
						
							
							defaults: set 'tabpagemax' to 50 by default.  #2869  
						
						... 
						
						
						
						Re: https://github.com/neovim/neovim/issues/2676  
						
						
					 
					
						2015-06-21 02:02:00 -04:00 
						 
				 
			
				
					
						
							
							
								Felipe Morales 
							
						 
					 
					
						
						
							
						
						2c40d117e6 
					 
					
						
						
							
							defaults: set 'display' to "lastline" by default.  
						
						... 
						
						
						
						Re: https://github.com/neovim/neovim/issues/2676  
						
						
					 
					
						2015-06-21 01:48:53 -04:00 
						 
				 
			
				
					
						
							
							
								Justin M. Keyes 
							
						 
					 
					
						
						
							
						
						9ebb5c681b 
					 
					
						
						
							
							defaults: enable 'hlsearch' by default.  #2859  
						
						... 
						
						
						
						Also update the documentation regarding the option.
Re: https://github.com/neovim/neovim/issues/2676  
						
						
					 
					
						2015-06-20 16:40:03 -04:00 
						 
				 
			
				
					
						
							
							
								Felipe Morales 
							
						 
					 
					
						
						
							
						
						ffeffcb6cd 
					 
					
						
						
							
							defaults: enable 'incsearch' by default.  #2858  
						
						... 
						
						
						
						This also updates the documentation about 'incsearch'.
Re: https://github.com/neovim/neovim/issues/2676  
						
						
					 
					
						2015-06-20 16:19:16 -04:00 
						 
				 
			
				
					
						
							
							
								Felipe Morales 
							
						 
					 
					
						
						
							
						
						6cfe98c66e 
					 
					
						
						
							
							defaults: remove "i" from the default 'complete'  #2854  
						
						... 
						
						
						
						"i" could slow down the completion.
Re: https://github.com/neovim/neovim/issues/2676  
						
						
					 
					
						2015-06-20 14:43:51 -04:00 
						 
				 
			
				
					
						
							
							
								Felipe Morales 
							
						 
					 
					
						
						
							
						
						e3568364df 
					 
					
						
						
							
							default: enable 'langnoremap'.  #2853  
						
						... 
						
						
						
						Re: https://github.com/neovim/neovim/issues/2676  
						
						
					 
					
						2015-06-20 14:19:15 -04:00 
						 
				 
			
				
					
						
							
							
								Felipe Morales 
							
						 
					 
					
						
						
							
						
						ba84f7fc00 
					 
					
						
						
							
							defaults: set 'mouse' to 'a' by default.  #2860  
						
						... 
						
						
						
						Re: https://github.com/neovim/neovim/issues/2676 
Also, some documentation changes. 
						
						
					 
					
						2015-06-20 14:14:39 -04:00 
						 
				 
			
				
					
						
							
							
								Felipe Morales 
							
						 
					 
					
						
						
							
						
						8e3f67f2a0 
					 
					
						
						
							
							defaults: enable 'autoindent'  #2857  
						
						... 
						
						
						
						Re: https://github.com/neovim/neovim/issues/2676  
						
						
					 
					
						2015-06-20 14:02:56 -04:00 
						 
				 
			
				
					
						
							
							
								Felipe Morales 
							
						 
					 
					
						
						
							
						
						81847da948 
					 
					
						
						
							
							defaults: enable 'autoread' by default  #2856  
						
						... 
						
						
						
						Re: https://github.com/neovim/neovim/issues/2676  
						
						
					 
					
						2015-06-20 13:49:30 -04:00 
						 
				 
			
				
					
						
							
							
								Felipe Morales 
							
						 
					 
					
						
						
							
						
						41c76d9444 
					 
					
						
						
							
							defaults: enable 'smarttab' by default.  #2855  
						
						
						
						
					 
					
						2015-06-20 13:45:47 -04:00