| Commit message (Collapse) | Author | Age |
... | |
|\ |
|
| | |
|
| |
| |
| |
| | |
'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 dispatch function generator was customized to allow for API functions to
declare a 'channel_id' as first argument.
|
| |
| |
| |
| |
| | |
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
|
|/ |
|
|\ |
|
| |
| |
| |
| | |
Sync po files to code at 3a68a4861adcc950cdbde709d4841f8ea0c52b12.
|
| |
| |
| |
| |
| |
| |
| |
| | |
Problem: Build fails because of some messages being repeated.
Curiously, all repeated messages have this comment:
"Explicit typecast avoids warning on Mac OS X 10.6".
No idea why.
Solution: Remove repeated messages.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Problem : Currently, 'make check' gives no explanations when it fails,
only the name of the po file which caused the halt. Then,
you have to manually run check.vim on that file to see what
happened.
Solution : Generate a 'check.log' file on every execution of check.vim
(overwriting if already existing). That way, when make halts,
you can go there and see details about failure.
|
| |
| |
| |
| |
| |
| |
| |
| | |
Problem: Executable used to fix japanese files with sjis encoding
(sjiscorr) fails to compile.
Solution: - Add mising includes.
- Remove __END_DECLS.
- Add removed comments.
|
| |
| |
| |
| |
| |
| |
| | |
Problem: On OSX, sed commands processing files converted to encodings
other that UTF-8 fail with "RE error: illegal byte sequence".
Solution: Make sed execute with C locale throgh environment variables
(LANG=C, LC_ALL=C, LC_CTYPE=C).
|