]> granicus.if.org Git - vim/commitdiff
Updated runtime files.
authorBram Moolenaar <Bram@vim.org>
Sun, 6 Nov 2016 13:48:06 +0000 (14:48 +0100)
committerBram Moolenaar <Bram@vim.org>
Sun, 6 Nov 2016 13:48:06 +0000 (14:48 +0100)
runtime/doc/digraph.txt
runtime/doc/eval.txt
runtime/doc/quickfix.txt
runtime/doc/todo.txt
runtime/filetype.vim
runtime/syntax/synload.vim

index ed794b2a4958f1de22b9075d8bd95678a630b002..a5cefc2f0dc50e4db81271fa4e36f0bf6afda317 100644 (file)
@@ -1,4 +1,4 @@
-*digraph.txt*   For Vim version 8.0.  Last change: 2014 Jun 19
+*digraph.txt*   For Vim version 8.0.  Last change: 2016 Nov 04
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
index acf84d29299a4a70a3893011be38f0f8cd7ba09e..b34bf480870163b23ee205ffccec93275f0236b8 100644 (file)
@@ -1,4 +1,4 @@
-*eval.txt*     For Vim version 8.0.  Last change: 2016 Oct 15
+*eval.txt*     For Vim version 8.0.  Last change: 2016 Nov 04
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -2523,7 +2523,7 @@ assert_exception({error} [, {msg}])                       *assert_exception()*
 assert_fails({cmd} [, {error}])                                        *assert_fails()*
                Run {cmd} and add an error message to |v:errors| if it does
                NOT produce an error.
-               When {error} is given it must match |v:errmsg|.
+               When {error} is given it must match in |v:errmsg|.
 
 assert_false({actual} [, {msg}])                               *assert_false()*
                When {actual} is not false an error message is added to
index 6e189cae05f9aaefc0495b8c35bdd936837eb613..39a0b8691f880c5f5d09a588a7a513611f6cfeab 100644 (file)
@@ -1,4 +1,4 @@
-*quickfix.txt*  For Vim version 8.0.  Last change: 2016 Jul 17
+*quickfix.txt*  For Vim version 8.0.  Last change: 2016 Nov 04
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -878,7 +878,7 @@ need to write down a "todo" list.
 
 
 The Vim plugins in the "compiler" directory will set options to use the
-selected compiler.  For ":compiler" local options are set, for ":compiler!"
+selected compiler.  For `:compiler` local options are set, for `:compiler!`
 global options.
                                                        *current_compiler*
 To support older Vim versions, the plugins always use "current_compiler" and
index d869eda86f9c7410b06cee038177b7b1aa573cc5..f9349d02975ea7b1a4a45c4bde927a8181f6598d 100644 (file)
@@ -1,4 +1,4 @@
-*todo.txt*      For Vim version 8.0.  Last change: 2016 Oct 27
+*todo.txt*      For Vim version 8.0.  Last change: 2016 Nov 06
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -97,6 +97,11 @@ Regexp problems:
   matches the empty string. (Dominique Pelle, 2015 Oct 2, Nov 24)
   had_endbrace[] is set but not initialized or used.
 
+Patch to support nested namespace syntax. (Pauli, 2016 Oct 30, #1214)
+
+Make html indent file use javascript indent, now that it's not just cindent.
+#1220
+
 json_encode(): should convert to utf-8. (Nikolai Pavlov, 2016 Jan 23)
 What if there is an invalid character?
 
@@ -114,6 +119,7 @@ Patch to reset ex_exitvalue after catch. (Christian Brabandt, 2016 Oct 23)
 
 Patch to deal with changed configure events in GTK 3. (Jan Alexander Steffens,
 2016 Oct 23 #1193)
+Remarks from nuko8, 2016 Nov 2.
 
 Wrong diff highlighting with three files. (2016 Oct 20, #1186)
 Also get E749 on exit.
@@ -145,6 +151,9 @@ Add tests for using number larger than number of lines in buffer.
 Patch to make v:shell_error writable. (Christian Brabandt, 2016 Sep 27)
 Is there another solution?
 
+On MS-Windows with 'clipboard' set to "unnamed" this doesn't work to double
+lines: :g/^/normal yyp   On Unix it works OK.  (Bryce Orgill, 2016 Nov 5)
+
 Invalid behavior with NULL list. (Nikolai Pavlov, #768)
 E.g. deepcopy(test_null_list())
 
index 75e8fa05f321f2f5222e815fea9a434a95b63e44..df8f7fdd99e19432b7ef5d41aec5ffedbf16062d 100644 (file)
@@ -1,7 +1,7 @@
 " Vim support file to detect file types
 "
 " Maintainer:  Bram Moolenaar <Bram@vim.org>
-" Last Change: 2016 Oct 28
+" Last Change: 2016 Oct 31
 
 " Listen very carefully, I will say this only once
 if exists("did_load_filetypes")
@@ -2671,6 +2671,9 @@ au BufNewFile,BufRead mutt{ng,}rc*,Mutt{ng,}rc*           call s:StarSetf('muttrc')
 " Nroff macros
 au BufNewFile,BufRead tmac.*                   call s:StarSetf('nroff')
 
+" OpenBSD hostname.if
+au BufNewFile,BufRead /etc/hostname.*          call s:StarSetf('config')
+
 " Pam conf
 au BufNewFile,BufRead */etc/pam.d/*            call s:StarSetf('pamconf')
 
index 6183f33a598acc57d0ac6802def5cdd4123ea8a2..ab918c645bd5578ffb287b29b4aa5726f2d71339 100644 (file)
@@ -1,6 +1,6 @@
 " Vim syntax support file
 " Maintainer:  Bram Moolenaar <Bram@vim.org>
-" Last Change: 2012 Sep 25
+" Last Change: 2016 Nov 04
 
 " This file sets up for syntax highlighting.
 " It is loaded from "syntax.vim" and "manual.vim".
@@ -69,8 +69,11 @@ au Syntax c,cpp,cs,idl,java,php,datascript
 
 
 " Source the user-specified syntax highlighting file
-if exists("mysyntaxfile") && filereadable(expand(mysyntaxfile))
-  execute "source " . mysyntaxfile
+if exists("mysyntaxfile")
+  let s:fname = expand(mysyntaxfile)
+  if filereadable(s:fname)
+    execute "source " . fnameescape(s:fname)
+  endif
 endif
 
 " Restore 'cpoptions'