aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Restore vim_renameHinidu2014-04-04
|
* Replace mch_rename and vim_rename with libuvHinidu2014-04-04
|
* Changed testdir/Makefile to use Makefile wildcards instead of SUFFIXESJared L Wong2014-04-04
|
* Fix #451: Build broken on OSX.Eliseo Martínez2014-04-03
| | | | | | Problem: Build breaks in OSX if macports ncurses present, due to header conflict involving 'term.h'. Solution: Modify include search order.
* Remove `mch_call_shell` GUI printing codeThiago de Arruda2014-04-03
| | | | | This isn't needed right now because spawned shells will inherit stdout by default
* Remove `:shell` and `suspend_shell`Thiago de Arruda2014-04-03
| | | | Issue #450 contains more details
* Remove support for running interactive programsThiago de Arruda2014-04-03
| | | | | | | | | This removes `mch_call_shell` code for feeding programs interactively. The removed code was supporting interactive programs in the old GUI, but right now we only have a terminal UI. The code is currently safe to remove because interactive programs will just simply take control of the terminal in cooked mode.
* Rename FPC_* constants.Thomas Wienecke2014-04-03
|
* Initialize on declaration; use postincrements.Thomas Wienecke2014-04-03
|
* Fix seperator->separator, path_tail_with_separator->path_tail_with_sep.Thomas Wienecke2014-04-03
|
* Test and refactor getnextcomp -> path_next_component.Thomas Wienecke2014-04-03
|
* Test and refactor gettail_sep -> path_tail_with_seperator.Thomas Wienecke2014-04-03
|
* Test and refactor gettail -> path_tail.Thomas Wienecke2014-04-03
|
* Refactor fullpathcmp -> path_full_compare.Thomas Wienecke2014-04-03
|
* Add os_stat to os/fs module.Thomas Wienecke2014-04-03
|
* Move gettail_dir more closely to its usage.Thomas Wienecke2014-04-03
|
* Make FPC_* defines an enum type in path.h.Thomas Wienecke2014-04-03
|
* added doxygen documentation for os_file_is_{readonly, writable}Stefan Hoffmann2014-04-03
|
* cleaned up the readonly check in readfile()Stefan Hoffmann2014-04-03
|
* remove mch_access macro as it is only used in fs.cStefan Hoffmann2014-04-03
|
* move filewritable() into /src/os/fs.c and rename itStefan Hoffmann2014-04-03
|
* move check_file_readonly() into /src/os/fs.c and rename itStefan Hoffmann2014-04-03
|
* check readonly by trying to open the file for writing...Stefan Hoffmann2014-04-03
| | | | instead of mch_access, to avoid a possible race condition
* Force travis build failure when some test failsThiago de Arruda2014-04-03
|
* Use check_symbol_exists() instead of check_function_exists().John Szakmeister2014-04-03
| | | | | | | | 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).
* vim-patch:7.4.166Justin M. Keyes2014-04-02
| | | | | | | Problem: Auto-loading a function for code that won't be executed. Solution: Do not auto-load when evaluation is off. (Yasuhiro Matsumoto) https://code.google.com/p/vim/source/detail?r=5d03c374712128077ac4c342aad02120ed98df70
* Replace use of mch_rename with rename.oni-link2014-04-02
| | | | | The macro mch_rename is no longer necessary, because C99 function rename is always available.
* remove HAVE_FCHDIRoni-link2014-04-02
|
* remove HAVE_DL{OPEN, SYM}oni-link2014-04-02
|
* remove HAVE_WCTYPE_Honi-link2014-04-02
|
* remove HAVE_WCHAR_Honi-link2014-04-02
|
* remove HAVE_USLEEPoni-link2014-04-02
|
* remove HAVE_SYS_{POLL_H, RESOURCE_H, SYSCTL_H, TYPES_H}oni-link2014-04-02
|
* remove HAVE_SYSINFO and HAVE_SYSINFO_MEM_UNIToni-link2014-04-02
|
* remove HAVE_SVR4_PTYSoni-link2014-04-02
|
* remove HAVE_STRTOLoni-link2014-04-02
| | | | strtol is a C99 standard function.
* remove HAVE_STRPBRKoni-link2014-04-02
| | | | strpbrk is a C99 standard function.
* remove HAVE_STRING_Honi-link2014-04-02
|
* remove HAVE_STRFTIMEoni-link2014-04-02
| | | | strftime is a C99 standard function.
* remove HAVE_STRERRORoni-link2014-04-02
| | | | strerror is a C99 standard function.
* remove HAVE_STDLIB_Honi-link2014-04-02
|
* remove HAVE_SIGCONTEXToni-link2014-04-02
|
* remove HAVE_RENAMEoni-link2014-04-02
| | | | rename is a C99 standard function.
* remove HAVE_FLOAT_FUNCSoni-link2014-04-02
|
* remove HAVE_DATE_TIMEoni-link2014-04-02
| | | | __DATE__ and __TIME__ are C99 standard predefined macros.
* Delete os_delay unit test.Thomas Wienecke2014-04-02
|
* Move signal handling to libuv event loopThiago de Arruda2014-04-01
| | | | | | | | | | | | | | | | | This removes all signal handling code from os_unix.c to os/signal.c. Now signal handling is done like this: - Watchers for signals are registered with libuv default event loop - `event_poll` continuously calls `poll_uv_loop` to produce events until it receives user input, SIGINT or a timeout - Any signals received in `poll_uv_loop` will push events to a queue that is drained and processed by `event_poll` Signals aren't handled directly in the libuv callback to avoid recursion in the event loop(which isn't supported by libuv). The same principle will apply to other events in the future: Push to a queue from a libuv callback and drain it from `event_poll`
* Move shorten_filenames back to fileio.cJohn Schmidt2014-04-01
|
* Move match_suffix from misc1.cJohn Schmidt2014-04-01
|
* Move expand_wildcards{,_eval} from misc1.cJohn Schmidt2014-04-01
|