@username
を付けます 43 | function! s:Execute(args)
44 | let dir = expand('%:p:h')
45 | let file = expand('%:t')
46 | let command = get(b:, 'command', s:cmd_map[&filetype])
47 | let cmd = "rewatch ".file." -c '".command." ".shellescape(file)." ".a:args." '"
48 | execute 'Nrun ' . cmd
49 | endfunction
1 | " vim: set sw=2 ts=2 sts=2 et tw=78 foldmarker={{,}} foldmethod=marker foldlevel=0: