Wednesday, August 5, 2015

Re: autocmd with

2015-08-06 0:21 GMT+03:00 Frank Dinoff <frank.dinoff@gmail.com>:
>> autocmd BufNew * :call DefineAu()
>> function DefineAu()
>> :au CursorHold <buffer=abuf> echo 'hold'
>> endfunction
>
> after defining the function and adding the autocmd, using :new to create a new buffer still outputs
>
> E680: <buffer=0>: invalid buffer number

This works for me:

vim -u NONE -i NONE --cmd 'au BufNew * :call DefAu()' --cmd $'fu
DefAu()\nau CursorHold <buffer=abuf> echo "hold"\nendfu' -c enew

: periodically prints `hold` as expected. (Needs zsh or bash because
$'' is not present in POSIX shells.)

>
> --
> --
> 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 vim_use+unsubscribe@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

--
--
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 vim_use+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments: