Method: Neovim::Remote::Message#initialize
- Defined in:
- lib/neovim/remote.rb
#initialize(*args) ⇒ Message
Returns a new instance of Message.
37 38 39 40 |
# File 'lib/neovim/remote.rb', line 37 def initialize *args z = self.class::KEYS.zip args @cont = z.inject Hash.new do |c,(h,k)| c[h] = k ; c end end |