From 6fcd96250b22b82b4043afd63182e125aef1e90a Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Sat, 8 May 2021 08:16:43 -0400 Subject: vim-patch:8.2.2838: file extension .wrap not recognized Problem: File extension .wrap not recognized. Solution: Use dosini filetype for .wrap files. (Liam Beguin, closes vim/vim#8177) https://github.com/vim/vim/commit/e3e598e82b79a2ab5ba5e312d54e65c940e2e809 --- runtime/filetype.vim | 1 + 1 file changed, 1 insertion(+) (limited to 'runtime') diff --git a/runtime/filetype.vim b/runtime/filetype.vim index f0d2b36a84..474a447284 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -1015,6 +1015,7 @@ au BufNewFile,BufRead *.hgrc,*hgrc setf cfg " Meson Build system config au BufNewFile,BufRead meson.build,meson_options.txt setf meson +au BufNewFile,BufRead *.wrap setf dosini " Messages (logs mostly) au BufNewFile,BufRead */log/{auth,cron,daemon,debug,kern,lpr,mail,messages,news/news,syslog,user}{,.log,.err,.info,.warn,.crit,.notice}{,.[0-9]*,-[0-9]*} setf messages -- cgit From ec04d371882a55c370700dd73e1419cbc130c942 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Sat, 8 May 2021 08:18:03 -0400 Subject: vim-patch:8.2.2839: default redirection missing "ash" and "dash" Problem: Default redirection missing "ash" and "dash". Solution: Recognize "ash" and "dash". (Natanael Copa, closes vim/vim#8180) https://github.com/vim/vim/commit/56318369750066718b880afa69e7ae3843d0410b --- runtime/doc/options.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'runtime') diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 269080e750..2527a91cc8 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -5267,9 +5267,9 @@ A jump table for the options with a short description can be found at |Q_op|. in a file and echoed to the screen. If the 'shell' option is "csh" or "tcsh" after initializations, the default becomes "|& tee". If the 'shell' option is "sh", "ksh", "mksh", "pdksh", "zsh", "zsh-beta", - "bash" or "fish" the default becomes "2>&1| tee". This means that - stderr is also included. Before using the 'shell' option a path is - removed, thus "/bin/sh" uses "sh". + "bash", "fish", "ash" or "dash" the default becomes "2>&1| tee". This + means that stderr is also included. Before using the 'shell' option a + path is removed, thus "/bin/sh" uses "sh". The initialization of this option is done after reading the vimrc and the other initializations, so that when the 'shell' option is set there, the 'shellpipe' option changes automatically, unless it was -- cgit