| Commit message (Collapse) | Author | Age |
| ... | |
| |
|
|
| |
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.
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
As discussed in #694, vim encryption uses old,
obsolete algorithms that are poorly implemented.
Since insecure cryptography is worse than no
cryptgraphy, the community voted in favor of
removing all crypto.
Various alternatives to the old crypto is
being discussed in #701.
Closes #694.
|
| |
|
|
|
|
|
| |
- Leave src as include dir (for includes to recognize 'nvim/' prefix).
- Change subdirectory from src to src/nvim.
- Fix msgpack generation.
- Fix some other paths to new locations.
|
| | |
|
| |
|
|
|
|
|
| |
There are some systems that have usernames of the form DOMAIN\username,
which causes an invalid escape character to be inserted. I was going to
add some escaping, but decided it would be best to just outright set the
value, since I don't want the DOMAIN portion in there anyways.
|
| |
|
|
|
|
|
|
| |
This is mostly a revert of 477031c03b2c525b117fae8a9b61c98245a06908.
Now that we are not setting `CMAKE_C_FLAGS`, the check can work
correctly and it helps `pcc` (portable c compiler) make it further
along--though it still doesn't produce usable results (see #427 for the
details).
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
|
|
| |
strtol is a C99 standard function.
|
| |
|
|
| |
strpbrk is a C99 standard function.
|
| | |
|
| |
|
|
| |
strftime is a C99 standard function.
|
| |
|
|
| |
strerror is a C99 standard function.
|
| | |
|
| | |
|
| |
|
|
| |
rename is a C99 standard function.
|
| | |
|
| |
|
|
| |
__DATE__ and __TIME__ are C99 standard predefined macros.
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|