diff options
Diffstat (limited to 'core/.view.lua')
-rw-r--r-- | core/.view.lua | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/core/.view.lua b/core/.view.lua index 6cdb4336..ea576265 100644 --- a/core/.view.lua +++ b/core/.view.lua @@ -5,19 +5,15 @@ --- -- The currently focused view. -- It also represents the structure of any view table in 'views'. --- [Dummy file] module('view') ---- --- The currently focused view. --- It also represents the structure of any view table in 'views'. --- @class table --- @name view --- @field doc_pointer The pointer to the document associated with this view's +-- Markdown: +-- ## Fields +-- +-- * `doc_pointer`: The pointer to the document associated with this view's -- buffer. (Used internally; read-only) --- @field size The integer position of the split resizer (if this view is part --- of a split view). -view = { doc_pointer = nil, size = nil } +-- * `size`: The integer 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. |