| Commit message (Collapse) | Author | Age |
| |
|
|
|
|
| |
So that they do the last nvim/func_attr.h include
|
|
|
|
| |
Required for FUNC_ATTR_UNUSED to work in lib/k*
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- The 'stripdecls.py' script replaces declarations in all headers by includes to
generated headers.
`ag '#\s*if(?!ndef NEOVIM_).*((?!#\s*endif).*\n)*#ifdef INCLUDE_GENERATED'`
was used for this.
- Add and integrate gendeclarations.lua into the build system to generate the
required includes.
- Add -Wno-unused-function
- Made a bunch of old-style definitions ANSI
This adds a requirement: all type and structure definitions must be present
before INCLUDE_GENERATED_DECLARATIONS-protected include.
Warning: mch_expandpath (path.h.generated.h) was moved manually. So far it is
the only exception.
|
|
|
|
| |
Uses a perl script to move it (scripts/movedocs.pl)
|
| |
|
|
|
|
|
| |
- New command line option prints the binary API metadata object
and exits
|
|
|
|
|
|
| |
Occurs when compiling with:
rm -rf build/ && make clean && make cmake CFLAGS='-DNDEBUG' && make
^--important
|
|
|
|
|
| |
fix #778
thanks @genisaguilar
|
|
|
|
|
| |
To replace `Map(T)`, a new macro `PMap(T)` was defined as `Map(T, ptr_t)` for
writing maps that store pointers with less boilerplate
|
| |
|
| |
|
|
|
|
| |
'title' and 'icon' options
|
|
|
|
| |
Support for message translations using gettext()
|
|
|
|
| |
Printing using PostScript file output
|
|
|
|
| |
Support for floating point variables
|
|
|
|
|
| |
'statusline', 'rulerformat' and special format of 'titlestring' and
'iconstring' options
|
|
|
|
| |
Support for :mksession command
|
|
|
|
|
| |
Support for gf(edit the file whose name is under or after the cursor)
and <cfile>(is replaced with the path name under the cursor).
|
|
|
|
| |
Support for :menu command. It can be used in terminal Vim too.
|
|
|
|
|
| |
Vim commands for the buffer list and the argument list: ":buffer",
":bnext", ":bdel", ":argdelete", etc.
|
|
|
|
| |
Vim's extra Ex commands: :center, :left, :normal, :retab and :right
|
|
|
|
| |
Support for VimScript, :let, :if, etc.
|
|
|
|
| |
Synchronization of cursor in split windows for diff mode
|
|
|
|
| |
Support for :confirm with console dialog.
|
|
|
|
| |
Insert mode completion with 'completefunc'
|
|
|
|
| |
Special comments formatting, see 'comments' option.
|
|
|
|
| |
Command-line window which opens by q:, q/, q?
|
|
|
|
| |
'showcmd' and 'ruler' options
|
|
|
|
| |
Completion of mappings/abbreviations in command line mode
|
|
|
|
| |
Support for byte2line(), line2byte(), go and :goto.
|
|
|
|
| |
C code indenting
|
|
|
|
| |
Support for :autocmd command
|
| |
|
|
|
|
| |
Multi-byte character handling.
|
|
|
|
| |
Support for vim's diff mode.
|
|
|
|
| |
Support for multiple windows and status line.
|
| |
|
| |
|
|
|
|
|
| |
s/ml_get_curline/get_cursor_line_ptr
s/ml_get_cursor/get_cursor_pos_ptr
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
The channel_send_event will now broadcast events to all subscribed channels if
the 'id' parameter is 0.
|
| |
|
| |
|
|
|
|
|
|
|
| |
Now `wstream_write` receives pointers for WBuffer objects(created with
wstream_new_buffer), which stores a reference count to determine when it's safe
the free the buffer. This was done to enable writing of the same buffer to
multiple WStream instances
|