| 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
|
| |
|
|
|
|
|
|
|
| |
I hadn't spotted that the `sh -e` commandline was being used. I *think* this
is what's causing the exit 0 line not to run. Pray for success.
It's a real shame I can't this locally, what a mess.
|
|
|
|
|
| |
It seems the coverity script likes to return 1 (error) when the current
branch does not follow its pattern. Temporarily disable that.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Run only on push to branch coverity-scan. We can use a cron script to do
this 4 times a week (that's our allowance).
NOTE: possible future improvements are:
1. Fold the build matrix item into another short one so we don't overburden
travis. It's a little less clear but it should be nicer on the
infrastructure.
2. Change the security token, one can do that from the coverity admin page.
3. Don't do the naive `make depend`, but use the prebuilt libraries.
|
|\ |
|
|/
|
|
|
| |
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
|
|
|
|
|
|
| |
It inteferes with development activities by breaking your build in the
middle of a refactor. Instead, let's enable -Werror on the Travis CI
builds via a TRAVIS_CI_BUILD option.
|
| |
|
|\ |
|
| | |
|
| |
| |
| |
| | |
'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.
|