Method: Neovim::Session#next

Defined in:
lib/neovim/session.rb

#nextObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.


40
41
42
43
44
# File 'lib/neovim/session.rb', line 40

def next
  return @pending_messages.shift if @pending_messages.any?

  run { |msg| stop; msg }
end