Re: [vim/vim] runtime(zip): Customizable zip/unzip commands (PR #20832)

Christian Brabandt (Vim Github Repository) <[email protected]> Fri, 31 Jul 2026 10:59:36 -0700
Newsgroups gmane.editors.vim.devel
Message-ID <vim/vim/pull/20832/[email protected]>
chrisbra left a comment (vim/vim#20832)

Well, the other alternative would be to use vim variarbles, that are set by the existing variables if those exists, something like this:

```vim
if !exists('g:zip_zipcmd_list')
  if exists('g:zip_zipcmd')
    let g:zip_zipcmd_list = [g:zip_zipcmd, '-d']
  else
    let g:zip_zipcmd_list = ['zip', '-d']
  endif
endif
```

-- 
Reply to this email directly or view it on GitHub:
https://github.com/vim/vim/pull/20832#issuecomment-5145963841
You are receiving this because you are subscribed to this thread.

Message ID: <vim/vim/pull/20832/[email protected]>

-- 
-- 
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

--- 
You received this message because you are subscribed to the Google Groups "vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
To view this discussion visit https://groups.google.com/d/msgid/vim_dev/vim/vim/pull/20832/c5145963841%40github.com.