Files
neovim/test/functional
Justin M. Keyes c12cf5bde7 autocmd: introduce "once" feature
Adds a new feature to :autocmd which sets the handler to be executed at
most one times.

Before:

    augroup FooGroup
      autocmd!
      autocmd FileType foo call Foo() | autocmd! FooGroup * <buffer>
    augroup END

After:

    autocmd FileType foo once call Foo()
2019-03-10 04:58:30 +01:00
..
2019-03-10 04:58:30 +01:00
2019-01-27 00:51:58 +01:00
2019-01-17 23:24:03 +01:00
2016-06-10 21:50:49 +03:00