aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
| * Refactor the lua dependency checking.Rui Abreu Ferreira2014-07-11
|/ | | | | | | | This is in preparation for the next step, which is to find a suitable lua interpreter, rather than just erroring when an interpreter is found but doesn't have the necessary dependencies. Helped-by: John Szakmeister <john@szakmeister.net>
* Merge #927 'Fix stdbool.h usage'Justin M. Keyes2014-07-11
|\
| * Include stdbool.h in headers which have functions with bool in signaturePavel Platto2014-07-11
| | | | | | | | | | | | | | Done by manual inspecting of the output of this script: grep -r -l -w "bool" * | grep 'c$' | sed 's/.c$//' > has_bool grep -r -l -w "stdbool.h" * | grep 'h$' | sed 's/.h$//' > has_include grep -F -x -v -f has_include has_bool
| * Remove stdbool.h from files which don't need itPavel Platto2014-07-11
| | | | | | | | | | | | | | Done by manual inspection of the output of this script: grep -r -l -w "bool\|true\|false" * | grep 'c$\|h$' > has_bool grep -r -l "stdbool.h" * | grep 'c$\|h$' > has_include grep -F -x -v -f has_bool has_include
| * Include stdbool.h in some files which use itPavel Platto2014-07-11
|/ | | | | | | Done by manual inspection of the output of this script: grep -r -l -w "bool\|true\|false" * | grep 'c$\|h$' > has_bool grep -r -l "stdbool.h" * | grep 'c$\|h$' > has_include grep -F -x -v -f has_include has_bool
* Merge #913 'Update Swedish (sv) translation'Justin M. Keyes2014-07-11
|\
| * Update Swedish (sv) translation: improve translations.Björn Linse2014-07-11
| |
| * Update Swedish (sv) translation: Sync to ↵Björn Linse2014-07-11
|/ | | | 11653ce2d7789ad1ccf31b37c12589cf1cb7787f
* Enable and fix misc2.c -Wconversion warnings #907Shane Iler2014-07-11
|
* vim-patch:7.4.308 #832Will Stamper2014-07-11
| | | | | | | | Problem: When using ":diffsplit" on an empty file the cursor is displayed on the command line. Solution: Limit the value of w_topfill. https://code.google.com/p/vim/source/detail?r=e3d2b8d83bb30c428a051f50791e454fcbc080af
* vim-patch:7.4.306 #842Will Stamper2014-07-11
| | | | | | | | Problem: getchar(0) does not return Esc. Solution: Do not wait for an Esc sequence to be complete. (Yasuhiro Matsumoto) https://code.google.com/p/vim/source/detail?r=05e1d8afcc5e375bf708ccc9810e2fd1a5a8a3cf
* vim-patch:7.4.295 #833Will Stamper2014-07-11
| | | | | | | Problem: Various typos, bad white space and unclear comments. Solution: Fix typos. Improve white space. Update comments. https://code.google.com/p/vim/source/detail?r=662ae48e7e246a63d38c9f3165b15b62252edaee
* vim-patch:7.4.291 #879oni-link2014-07-11
| | | | | | | | Problem: Compiler warning for int to pointer of different size when DEBUG is defined. Solution: use smsg() instead of EMSG3(). https://code.google.com/p/vim/source/detail?r=b5972833add9de714f4651e26fd9ea63ec4a880c
* c99: remove vim_round #909Nicolas Hillegeer2014-07-11
| | | | | C89 did not have round(), vim emulated it with vim_round. But since we're using C99 this is not a problem anymore.
* Default 'encoding'-option from latin to utf-8 #935Fredrik Fornwall2014-07-10
| | | | | | | | | Normally the default encoding does not have much effect, since it's overridden by the environment. But when it's not (test with "LANG= LC_ALL= C_CTYPE= nvim" and perform ":set encoding?"), utf-8 should be the default encoding for a 21st century editor :).
* Merge #933 'Avoid linking with libform(w).so'John Szakmeister2014-07-10
|\
| * Avoid linking with libform(w).soFredrik Fornwall2014-07-10
|/ | | | | | | | | | If libtgent or libcurses is installed, the first one found of them is linked to. But if not, a find_package(Curses REQUIRED) is used and CURSES_LIBRARIES is added to NVIM_LINK_LIBRARIES. This contains libform(w).so on many systems, causing nvim to be linked to and depend on libform(w).so, which may not be installed one some space-constrained systems, unnecessarily.
* Fix two android compile errors in fs.c #924Fredrik Fornwall2014-07-09
| | | | | Replace usage of deprecated S_IEXEC with S_IXUSR. Rename a variable named "errno" to avoid clashing with define.
* Merge #921 'Remove includes vim.h'Nicolas Hillegeer2014-07-09
|\
| * move errno.h include out of vim.hBrandon Coleman2014-07-09
| |
| * move stdarg.h include out of vim.hBrandon Coleman2014-07-09
| |
| * move assert.h include out of vim.hBrandon Coleman2014-07-09
| |
| * move wctype.h include out of vim.hBrandon Coleman2014-07-09
| |
| * move <inttypes.h> include out of vim.hBrandon Coleman2014-07-09
| |
| * move locale.h include out of vim.hBrandon Coleman2014-07-09
| |
| * move ascii.h include out of vim.hBrandon Coleman2014-07-09
| |
| * move memory.h include to version.cBrandon Coleman2014-07-09
| |
| * remove stdbool.h include from vim.h and globals.hBrandon Coleman2014-07-09
| |
| * remove proto.h include from vim.hBrandon Coleman2014-07-09
|/
* Replaced most TRUE/FALSE macros in arabic, mbyte and spell. #645Klemen Košir2014-07-08
|
* Replace int with bool in some files. #654Klemen Košir2014-07-08
|
* Merge pull request #922 'Improve neovim.rb'Nicolas Hillegeer2014-07-08
|\
| * neovim.rb: improve dependencyXu Cheng2014-07-08
| | | | | | | | | | | | 1. remove unnecessary deps `md5sha1sum` 2. add `=> :build` 3. add missing deps `autoconf`
| * neovim.rb: modernize the styleXu Cheng2014-07-08
|/ | | | https://github.com/styleguide/ruby
* Merge #910 'Remove unnecessary PATHS from cmake modules'John Szakmeister2014-07-08
|\
| * Removed unnecessary PATHS from cmake modulesRui Abreu Ferreira2014-07-08
|/ | | | | - DEPS_INSTALL_DIR is already set into CMAKE_PREFIX_PATH in the main CMakeLists.txt
* Merge pull request #916 'Add `feedkeys` API function'Thiago de Arruda2014-07-07
|\
| * dispatch function generator: Fix bug in validation/initializationThiago de Arruda2014-07-07
| | | | | | | | | | | | - Initialize variables before validating argument count to remove possibility of freeing uninitialized pointers - Set the error when the argument count validation fails
| * Add vim_feedkeys API functionRui Abreu Ferreira2014-07-07
|/ | | | | | | | | | | - New API function to push data to the typeahead buffer - this should equivalent to the vimscript feedkeys() function - In Vim there was a --remote-send command to insert input into a Vim server instance. Besides accepting key sequences it also translated special keys such as <CR> or <Leader>, backslash notation is ignored. This commit backports the original Vim handler for --remote-send as a bool option for vim_feedkeys() - vim-patch:0
* cmake: upgrade libuv 0.11.23 -> 0.11.26 #911Nicolas Hillegeer2014-07-06
| | | | | | | | | | | Fixes some bugs and increase the performance of uv_hrtime() on OSX, which reduces its prominence in performance traces. This allows us to better see what's really causing slowness. ref: - https://github.com/neovim/neovim/issues/868 - https://github.com/joyent/libuv/pull/1325 - https://github.com/joyent/libuv/releases
* MsgPack-RPC dispatch based on function array lookup #864Felipe Oliveira Carvalho2014-07-04
| | | | | | This simplifies the generated msgpack_rpc_dispatch() function, separates the code for each RPC method more clearly and allows easy implementation of alternative dispatching methods (e.g. string method id dispatch).
* Remove include for sys/select.h in vim.h #890Rui Abreu Ferreira2014-07-01
| | | | | - There is no need to include sys/select.h anymore - Removed HAVE_SYS_SELECT_H from config.h.in
* Merge #780 'Update German translation'Justin M. Keyes2014-07-01
|\
| * Update German translation: Improve translations.Florian Walch2014-07-01
| | | | | | | | | | | | * Translate missing and fuzzy strings. * Fix grammatical errors. * Rewordings for consistency.
| * Update German translation: Sync to 9f1b9726fb28f78fba7c50efa5316c4bf2413cf8.Florian Walch2014-07-01
|/
* Merge #892 'Update pt_BR translation'Justin M. Keyes2014-07-01
|\
| * Update pt_BR translation: Improve translations.Eduardo Elias Ferreira2014-07-01
| | | | | | | | [ci skip]
| * Update pt_BR translation: Sync to a3214803429e05635cbfbe8b3050a73406da6bc6Eduardo Elias Ferreira2014-07-01
|/
* LICENSE: add LuaJIT notice. #899Justin M. Keyes2014-06-30
|
* README: Add Bountysource badge. #854Justin M. Keyes2014-06-30
|