Method: Neovim::Buffer#append

Defined in:
lib/neovim/remote_object.rb

#append(pos = nil, str) ⇒ Object



158
159
160
161
# File 'lib/neovim/remote_object.rb', line 158

def append pos = nil, str
  p = (pos||0) + 1
  insert p, str
end