On 2013-11-18, Paul Isambert wrote:
> "Егор"
> > 18.11.2013 13:54, Paul Isambert написав(ла):
> > > "Егор":
> > >> How can I run console command before saving file? Is it possible
> > >> to
> > >> do it when type :w?
> > > It depends on what you want to do exactly; you can try:
> > >
> > >      :execute "!cmd" | w
> > >
> > > (see "help :bar" on why you can't simply use ":!cmd | w").
> > >
> > > If you want to do something whenever you write a buffer to a file,
> > > use the
> > > BufWrite autocommand.
> > >
> > > Best,
> > > Paul
> > >
> > Ok, next question.
> 
> You're welcome.
> 
> >                    I use autocmd BufWrite * execute "!apache restart"
> > Now i need hit <Enter> two times when use :w Is it possible to fix
> > it?
> 
> I guess you're looking for
> 
>     autocmd BufWrite * execute "silent !apache restart"

There is no need for the :execute command here.  The following will
suffice.

    autocmd BufWrite * silent !apache restart

Regards,
Gary

-- 
-- 
You received this message from the "vim_use" 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_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to