2

我目前正在使用以下映射,基本上通过执行脚本将我的 dev env 中编写的任何文件复制到我的本地服务器。它适用于单个文件。但是,我有做 :wa 来保存所有打开的缓冲区的习惯:

au BufWritePost /path/to/dev/* silent !$HOME/bin/somescript.sh %:p 

关于如何将其重写为条件的任何建议,例如:

if one file
  exec script to copy just that file # like I already have
if :wa
  # here I'd probably exec a script to just copy recursively

编辑

每个 ZyX 解决方案的可能解决方案:

au BufWritePost /Users/rlevin/programming/sugar/Mango/sidecar/* silent !$HOME/bin/sugarbuild.sh %:p

" If we do :wa<CR> we check if command type is ':' and if command itself was
" 'wa'. If so, we call the command WA which calls BuildSidecarIfInProject.
" This checks if we're actually within the project's directory
cnoreabbrev <expr> wa ((getcmdtype() is# ':' && getcmdline() is# 'wa')?('WA'):('wa'))
command! WA :call BuildSidecarIfInProject()
function! BuildSidecarIfInProject()
  if fnamemodify('.', ':p')[:44] is# '/Users/rlevin/programming/sugar/Mango/sidecar'
    exec ":!$HOME/bin/toffeebuild.sh"
  endif                                                                                                                                                                        
endfunction
4

2 回答 2

2

无法确定保存的文件数量,但您可以重新映射/缩写 wa:

command WA # command that executes a script to just copy recursively
cnoreabbrev <expr> wa ((getcmdtype() is# ':' && getcmdline() is# 'wa')?('WA'):('wa'))
于 2012-04-20T06:35:41.533 回答
2

一些聪明人曾经说过,“过早的优化是万恶之源”。如果您确实需要对服务器进行动态备份/部署,为什么不每次都运行递归版本,或者可能绑定到热键?即不要特别对待单文件的情况。例如,rsync非常擅长避免不必要的复制。

于 2012-04-20T06:44:47.793 回答