Skip to content

Commit fe7bd10

Browse files
[skip ci] Update generated docs (#114)
Co-authored-by: Docs Workflow <[email protected]>
1 parent ebda5ee commit fe7bd10

File tree

4 files changed

+109
-109
lines changed

4 files changed

+109
-109
lines changed

lib/neovim/buffer.rb

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
module Neovim
55
# Class representing an +nvim+ buffer.
66
#
7-
# The methods documented here were generated using NVIM v0.10.4
7+
# The methods documented here were generated using NVIM v0.11.0
88
class Buffer < RemoteObject
99
attr_reader :lines
1010

@@ -145,7 +145,7 @@ def check_index(index, min)
145145
@method attach(send_buffer, opts)
146146
See +:h nvim_buf_attach()+
147147
@param [Boolean] send_buffer
148-
@param [Hash] opts
148+
@param [Dict] opts
149149
@return [Boolean]
150150
151151
@method detach
@@ -182,7 +182,7 @@ def check_index(index, min)
182182
@param [Integer] start_col
183183
@param [Integer] end_row
184184
@param [Integer] end_col
185-
@param [Hash] opts
185+
@param [Dict] opts
186186
@return [Array<String>]
187187
188188
@method get_offset(index)
@@ -202,14 +202,14 @@ def check_index(index, min)
202202
@method get_keymap(mode)
203203
See +:h nvim_buf_get_keymap()+
204204
@param [String] mode
205-
@return [Array<Hash>]
205+
@return [Array<Dict>]
206206
207207
@method set_keymap(mode, lhs, rhs, opts)
208208
See +:h nvim_buf_set_keymap()+
209209
@param [String] mode
210210
@param [String] lhs
211211
@param [String] rhs
212-
@param [Hash] opts
212+
@param [Dict] opts
213213
@return [void]
214214
215215
@method del_keymap(mode, lhs)
@@ -256,7 +256,7 @@ def check_index(index, min)
256256
@param [String] name
257257
@param [Integer] line
258258
@param [Integer] col
259-
@param [Hash] opts
259+
@param [Dict] opts
260260
@return [Boolean]
261261
262262
@method get_mark(name)
@@ -273,7 +273,7 @@ def check_index(index, min)
273273
See +:h nvim_buf_create_user_command()+
274274
@param [String] name
275275
@param [Object] command
276-
@param [Hash] opts
276+
@param [Dict] opts
277277
@return [void]
278278
279279
@method del_user_command(name)
@@ -283,8 +283,8 @@ def check_index(index, min)
283283
284284
@method get_commands(opts)
285285
See +:h nvim_buf_get_commands()+
286-
@param [Hash] opts
287-
@return [Hash]
286+
@param [Dict] opts
287+
@return [Dict]
288288
289289
@method get_number
290290
See +:h nvim_buf_get_number()+
@@ -297,12 +297,21 @@ def check_index(index, min)
297297
@param [Integer] line_end
298298
@return [void]
299299
300+
@method add_highlight(ns_id, hl_group, line, col_start, col_end)
301+
See +:h nvim_buf_add_highlight()+
302+
@param [Integer] ns_id
303+
@param [String] hl_group
304+
@param [Integer] line
305+
@param [Integer] col_start
306+
@param [Integer] col_end
307+
@return [Integer]
308+
300309
@method set_virtual_text(src_id, line, chunks, opts)
301310
See +:h nvim_buf_set_virtual_text()+
302311
@param [Integer] src_id
303312
@param [Integer] line
304313
@param [Array] chunks
305-
@param [Hash] opts
314+
@param [Dict] opts
306315
@return [Integer]
307316
308317
@method get_option(name)
@@ -320,23 +329,23 @@ def check_index(index, min)
320329
See +:h nvim_buf_get_extmark_by_id()+
321330
@param [Integer] ns_id
322331
@param [Integer] id
323-
@param [Hash] opts
332+
@param [Dict] opts
324333
@return [Array<Integer>]
325334
326335
@method get_extmarks(ns_id, start, end, opts)
327336
See +:h nvim_buf_get_extmarks()+
328337
@param [Integer] ns_id
329338
@param [Object] start
330339
@param [Object] end
331-
@param [Hash] opts
340+
@param [Dict] opts
332341
@return [Array]
333342
334343
@method set_extmark(ns_id, line, col, opts)
335344
See +:h nvim_buf_set_extmark()+
336345
@param [Integer] ns_id
337346
@param [Integer] line
338347
@param [Integer] col
339-
@param [Hash] opts
348+
@param [Dict] opts
340349
@return [Integer]
341350
342351
@method del_extmark(ns_id, id)
@@ -345,15 +354,6 @@ def check_index(index, min)
345354
@param [Integer] id
346355
@return [Boolean]
347356
348-
@method add_highlight(ns_id, hl_group, line, col_start, col_end)
349-
See +:h nvim_buf_add_highlight()+
350-
@param [Integer] ns_id
351-
@param [String] hl_group
352-
@param [Integer] line
353-
@param [Integer] col_start
354-
@param [Integer] col_end
355-
@return [Integer]
356-
357357
@method clear_namespace(ns_id, line_start, line_end)
358358
See +:h nvim_buf_clear_namespace()+
359359
@param [Integer] ns_id

0 commit comments

Comments
 (0)