Hi, It seems that gzip plugin supports *.xz and *.lzma, but it is not documented. Attached patch updates pi_gzip.txt (and also fixes indent errors in motion.txt). Please check it.
Regards, Ken Takata -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php
diff -r dbb084863466 -r 95cc4455da95 runtime/doc/motion.txt --- a/runtime/doc/motion.txt Wed Jun 20 22:56:02 2012 +0200 +++ b/runtime/doc/motion.txt Wed Jun 27 22:09:32 2012 +0900 @@ -57,7 +57,7 @@ |>| > shift right |<| < shift left |zf| zf define a fold - |g@| g@ call function set with the 'operatorfunc' option + |g@| g@ call function set with the 'operatorfunc' option If the motion includes a count and the operator also had a count before it, the two counts are multiplied. For example: "2d3w" deletes six words. diff -r dbb084863466 -r 95cc4455da95 runtime/doc/pi_gzip.txt --- a/runtime/doc/pi_gzip.txt Wed Jun 20 22:56:02 2012 +0200 +++ b/runtime/doc/pi_gzip.txt Wed Jun 27 22:09:32 2012 +0900 @@ -5,6 +5,7 @@ Editing compressed files with Vim *gzip* *bzip2* *compress* + *lzma* *xz* 1. Autocommands |gzip-autocmd| @@ -25,6 +26,8 @@ *.Z compress (Lempel-Ziv) *.gz gzip *.bz2 bzip2 + *.lzma lzma + *.xz xz That's actually the only thing you need to know. There are no options.
