Sha256: 93ad436025adc59e0092e5c1e0ee036529727c046b7f7e01f90d214016683d2d
Contents?: true
Size: 292 Bytes
Versions: 3
Compression:
Stored size: 292 Bytes
Contents
module Neovim # An asynchronous message from +nvim+. # # @api private class Notification attr_reader :method_name, :arguments def initialize(method_name, args) @method_name = method_name.to_s @arguments = args end def sync? false end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
neovim-0.2.5 | lib/neovim/notification.rb |
neovim-0.2.4 | lib/neovim/notification.rb |
neovim-0.2.3 | lib/neovim/notification.rb |