Re: Dynamically creating an autocmd group

2019-01-02 Thread David Fishburn
Thanks Andy, didn't notice you can add additional command like that, even though that is essentially what we are doing when you run the command. Go figure. > > -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For

Re: Dynamically creating an autocmd group

2019-01-02 Thread 'Andy Wokula' via vim_use
Am 02.01.2019 um 15:01 schrieb David Fishburn:> :ver VIM - Vi IMproved 8.1 (2018 May 18, compiled Dec 30 2018 14:48:55) MS-Windows 32-bit GUI version with OLE support Included patches: 1-662 I have the following augroup: augroup MyTest autocmd! autocmd FocusGained * :if

Dynamically creating an autocmd group

2019-01-02 Thread David Fishburn
:ver VIM - Vi IMproved 8.1 (2018 May 18, compiled Dec 30 2018 14:48:55) MS-Windows 32-bit GUI version with OLE support Included patches: 1-662 I have the following augroup: augroup MyTest autocmd! autocmd FocusGained * :if has('clipboard') | echomsg "has clipboard" | endif autocmd