aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Merge #500 'Remove/simplify #ifdefs on default features'Justin M. Keyes2014-05-28
|\
| * Remove unused FEAT_*Pavel Platto2014-05-28
| |
| * Remove FEAT_TITLEHinidu2014-05-28
| | | | | | | | 'title' and 'icon' options
| * Remove FEAT_GETTEXTHinidu2014-05-28
| | | | | | | | Support for message translations using gettext()
| * Remove FEAT_POSTSCRIPTHinidu2014-05-28
| | | | | | | | Printing using PostScript file output
| * Remove FEAT_FLOATHinidu2014-05-28
| | | | | | | | Support for floating point variables
| * Remove FEAT_STL_OPTHinidu2014-05-28
| | | | | | | | | | 'statusline', 'rulerformat' and special format of 'titlestring' and 'iconstring' options
| * Remove FEAT_SESSIONHinidu2014-05-28
| | | | | | | | Support for :mksession command
| * Remove FEAT_SEARCHPATHHinidu2014-05-28
| | | | | | | | | | 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).
| * Remove FEAT_MENUHinidu2014-05-28
| | | | | | | | Support for :menu command. It can be used in terminal Vim too.
| * Remove FEAT_LISTCMDSHinidu2014-05-28
| | | | | | | | | | Vim commands for the buffer list and the argument list: ":buffer", ":bnext", ":bdel", ":argdelete", etc.
| * Remove FEAT_EX_EXTRAHinidu2014-05-28
| | | | | | | | Vim's extra Ex commands: :center, :left, :normal, :retab and :right
| * Remove FEAT_EVALHinidu2014-05-28
| | | | | | | | Support for VimScript, :let, :if, etc.
| * Remove FEAT_CURSORBINDHinidu2014-05-28
| | | | | | | | Synchronization of cursor in split windows for diff mode
| * Remove FEAT_CON_DIALOGHinidu2014-05-28
| | | | | | | | Support for :confirm with console dialog.
| * Remove FEAT_COMPL_FUNCHinidu2014-05-28
| | | | | | | | Insert mode completion with 'completefunc'
| * Remove FEAT_COMMENTSHinidu2014-05-28
| | | | | | | | Special comments formatting, see 'comments' option.
| * Remove FEAT_CMDWINHinidu2014-05-28
| | | | | | | | Command-line window which opens by q:, q/, q?
| * Remove FEAT_CMDL_INFOHinidu2014-05-28
| | | | | | | | 'showcmd' and 'ruler' options
| * Remove FEAT_CMDL_COMPLHinidu2014-05-28
| | | | | | | | Completion of mappings/abbreviations in command line mode
| * Remove FEAT_BYTEOFFHinidu2014-05-28
| | | | | | | | Support for byte2line(), line2byte(), go and :goto.
| * Remove FEAT_CINDENTHinidu2014-05-28
| | | | | | | | C code indenting
| * Remove FEAT_AUTOCMDHinidu2014-05-28
| | | | | | | | Support for :autocmd command
| * Remove FEAT_QUICKFIXHinidu2014-05-28
| |
| * Remove FEAT_MBYTEHinidu2014-05-28
| | | | | | | | Multi-byte character handling.
| * Remove FEAT_DIFFHinidu2014-05-28
| | | | | | | | Support for vim's diff mode.
| * Removed FEAT_WINDOWSHinidu2014-05-28
|/ | | | Support for multiple windows and status line.
* Merge #674 'Extract cursor.h from misc{1,2}.h and memline.h'Justin M. Keyes2014-05-28
|\
| * Remove code duplication in get_cursor_rel_lnumPavel Platto2014-05-28
| |
| * Add cursor.{c,h} to clint-files.txtPavel Platto2014-05-28
| |
| * Remove ml_ prefix from cursor.h functionsPavel Platto2014-05-28
| | | | | | | | | | s/ml_get_curline/get_cursor_line_ptr s/ml_get_cursor/get_cursor_pos_ptr
| * Enable -Wconversion on cursor.cPavel Platto2014-05-28
| |
| * Extract cursor.h from misc{1,2}.h and memline.hHinidu2014-05-28
|/
* Merge 'Refactor WStream to enable writing the same buffer to multiple targets'Thiago de Arruda2014-05-28
|\
| * Channel: Refactor: Extract register_channel functionThiago de Arruda2014-05-28
| |
| * Channel: Refactor: Extract serialize_event functionThiago de Arruda2014-05-28
| |
| * Build: Fix autocmd removal from cleanup functionThiago de Arruda2014-05-28
| |
| * API: Events: Add functions for {un}subscribing to broadcasted eventsThiago de Arruda2014-05-28
| |
| * API: Events: Automatically pass channel ids to API functionsThiago de Arruda2014-05-28
| | | | | | | | | | The dispatch function generator was customized to allow for API functions to declare a 'channel_id' as first argument.
| * API: Events: Add support for broadcasting eventsThiago de Arruda2014-05-28
| | | | | | | | | | The channel_send_event will now broadcast events to all subscribed channels if the 'id' parameter is 0.
| * API: Bugfix: Remove possible double-free in buffer_get_lineThiago de Arruda2014-05-28
| |
| * Add kvec.h macro libraryThiago de Arruda2014-05-28
| |
| * WStream: Refactor: Use reference count for memory managementThiago de Arruda2014-05-28
| | | | | | | | | | | | | | 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
| * Refactor: Use size_t for {w,r}streams.cThiago de Arruda2014-05-28
|/
* Merge #713 'Fix localization'Justin M. Keyes2014-05-27
|\
| * Fix localization: Update po files.Eliseo Martínez2014-05-27
| | | | | | | | Sync po files to code at 3a68a4861adcc950cdbde709d4841f8ea0c52b12.
| * Fix localization: Fix po files.Eliseo Martínez2014-05-27
| | | | | | | | | | | | | | | | 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.
| * Fix localization: Fix build: Improve checking.Eliseo Martínez2014-05-27
| | | | | | | | | | | | | | | | | | | | 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.
| * Fix localization: Fix build: Fix sjis-fixing executable.Eliseo Martínez2014-05-27
| | | | | | | | | | | | | | | | Problem: Executable used to fix japanese files with sjis encoding (sjiscorr) fails to compile. Solution: - Add mising includes. - Remove __END_DECLS. - Add removed comments.
| * Fix localization: Fix build: Fix sed issue on OSX.Eliseo Martínez2014-05-27
| | | | | | | | | | | | | | 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).