doc/vim_diff.txt (#5432)

This commit is contained in:
Justin M. Keyes 2016-10-06 09:45:24 +02:00 committed by GitHub
parent b1edc8abb7
commit d57f25e5ef
2 changed files with 6 additions and 5 deletions

View File

@ -260,11 +260,9 @@ endfunction
function! remote#host#LoadErrorForHost(host, log) abort function! remote#host#LoadErrorForHost(host, log) abort
return 'Failed to load '. a:host . ' host. '. return 'Failed to load '. a:host . ' host. '.
\ 'You can try to see what happened '. \ 'You can try to see what happened by starting nvim with '.
\ 'by starting Neovim with the environment variable '. \ a:log . ' set and opening the generated log file.'.
\ a:log . ' set to a file and opening the generated '. \ ' Also, the host stderr is available in messages.'
\ 'log file. Also, the host stderr is available '.
\ 'in messages.'
endfunction endfunction

View File

@ -36,7 +36,9 @@ these differences.
- 'autoindent' is set by default - 'autoindent' is set by default
- 'autoread' is set by default - 'autoread' is set by default
- 'backspace' defaults to "indent,eol,start" - 'backspace' defaults to "indent,eol,start"
- 'backupdir' defaults to .,~/.local/share/nvim/backup (|xdg|)
- 'complete' doesn't include "i" - 'complete' doesn't include "i"
- 'directory' defaults to ~/.local/share/nvim/swap// (|xdg|), auto-created
- 'display' defaults to "lastline" - 'display' defaults to "lastline"
- 'encoding' defaults to "utf-8" - 'encoding' defaults to "utf-8"
- 'formatoptions' defaults to "tcqj" - 'formatoptions' defaults to "tcqj"
@ -54,6 +56,7 @@ these differences.
- 'tabpagemax' defaults to 50 - 'tabpagemax' defaults to 50
- 'tags' defaults to "./tags;,tags" - 'tags' defaults to "./tags;,tags"
- 'ttyfast' is always set - 'ttyfast' is always set
- 'undodir' defaults to ~/.local/share/nvim/undo (|xdg|), auto-created
- 'viminfo' includes "!" - 'viminfo' includes "!"
- 'wildmenu' is set by default - 'wildmenu' is set by default