diff options
Diffstat (limited to 'core/.view.luadoc')
-rw-r--r-- | core/.view.luadoc | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/core/.view.luadoc b/core/.view.luadoc index bf2fe95c..6bf1fe37 100644 --- a/core/.view.luadoc +++ b/core/.view.luadoc @@ -10,14 +10,14 @@ module('view') -- Markdown: -- ## Fields -- --- * `doc_pointer` [number]: The pointer to the document associated with this --- view's buffer. (Read-only) +-- * `buffer` [table]: The buffer this view contains. (Read-only) -- * `size` [number]: The position of the split resizer (if this view is part of -- a split view). --- -- Splits the indexed view vertically or horizontally and focuses the new view. --- @param vertical Flag indicating a vertical split. False for horizontal. +-- @param vertical Flag indicating a vertical split. Defaults to false for +-- horizontal. -- @return old view and new view tables. function view:split(vertical) end @@ -29,11 +29,8 @@ function view:unsplit() end --- -- Goes to the specified buffer in the indexed view. -- Activates the 'buffer_*_switch' signals. --- @param n A relative or absolute buffer index. --- @param absolute Flag indicating if n is an absolute index or not. -function view:goto_buffer(n, absolute) end - ---- --- Focuses the indexed view if it hasn't been already. -function view:focus() end - +-- @param n A relative or absolute buffer index. An absolute index of -1 goes +-- to the last buffer. +-- @param relative Flag indicating if n is a relative index or not. Defaults to +-- false. +function view:goto_buffer(n, relative) end |