Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Merge pull request #85 from jszakmeister/remove-bashisms | Ashley Hewson | 2014-02-24 |
|\ | | | | | scripts/common.sh: remove a couple bashisms | ||
| * | scripts/common.sh: remove a couple bashisms | John Szakmeister | 2014-02-23 |
| | | | | | | | | | | This allows the scripts to work on systems that don't have /bin/bash as /bin/sh--such as Debian. | ||
* | | Merge pull request #79 from jdiez17/has_neovim | Ashley Hewson | 2014-02-24 |
|\ \ | | | | | | | Added 'neovim' to the feature list, following discussion on #44 | ||
| * | | Added 'neovim' to the feature list, following discussion on #44 | jdiez17 | 2014-02-23 |
| |/ | |||
* | | Fix space in link | Jim Hester | 2014-02-24 |
| | | |||
* | | Add table of contents to README.md | Jim Hester | 2014-02-24 |
| | | | | | | I added a table of contents to the readme and replaced the html links with markdown links. Thought you might find it useful! | ||
* | | use CMake's built in pthread detection | Rich Wareham | 2014-02-24 |
| | | | | | | | | | | | | | | | | | | | | | | CMake ships with a standard FindThreads module which can be used to a) test for a threading library and b) confirm that it is pthread. It also allows the hard-coding of the threading library name to be removed from ``src/CMakeLists.txt``. Make it an error not to have a pthread library installed and indicate to CMake that we strongly prefer pthread to any other platform threading library. | ||
* | | Merge branch 'master' of github.com:cweagans/neovim into cweagans-master | Thiago de Arruda | 2014-02-24 |
|\ \ | | | | | | | | | | | | | Conflicts: README.md | ||
| * | | Updating README file to use Homebrew for local builds | Cameron Eagans | 2014-02-23 |
| | | | |||
| * | | Adding `make` step | Cameron Eagans | 2014-02-23 |
| | | | |||
| * | | Adding neovim formula for Homebrew | Cameron Eagans | 2014-02-23 |
| |/ | |||
* | | Changed binary output directory from src/ to bin/ | jdiez17 | 2014-02-24 |
| | | |||
* | | Put waffle and travis badge together | Thiago de Arruda | 2014-02-24 |
| | | |||
* | | Use neovim versions of ~/.vim and ~/.vimrc | Christian Wellenbrock | 2014-02-24 |
| | | |||
* | | Merge pull request #105 from waffleio/master | Thiago de Arruda | 2014-02-24 |
|\ \ | | | | | | | waffle.io Badge | ||
| * | | add waffle.io badge | waffle.io | 2014-02-24 |
|/ / | |||
* | | Convert function declarations from K&R to ANSI style. | scott-linder | 2014-02-24 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | cproto (http://invisible-island.net/cproto/) was used to do the bulk of the work in batch; even the most recent version had some issues with typedef'd parameters; a quick "patch" was to modify `lex.l` to explicitly include all vim typedefs as known types. One example from `vim.h` is typedef unsigned char char_u; which was added in `lex.l` as <INITIAL>char_u { save_text_offset(); return T_CHAR; } Even with these changes there were some problems: * Two files (`mbyte.c` and `os_unix.c`) were not cleanly converted. * Any function with the `UNUSED` macro in its parameter list was not converted. Rather than spend more time fixing the automated approach, the two files `mbyte.c` and `os_unix.c` were converted by hand. The `UNUSED` macros were compiler specific, and the alternative, generic version would require a different syntax, so in order to simplify the conversion all uses of `UNUSED` were stripped, and then the sources were run back through cproto. It is planned to reconsider each use of `UNUSED` manually using a new macro definition. | ||
* | | Merge pull request #98 from davidzchen/doc-ca-bundle | Ashley Hewson | 2014-02-24 |
|\ \ | |/ |/| | Add documentation on installing root SSL certificates on OS X | ||
| * | Issue #97 - Add documentation on installing root SSL certificates on OS X, ↵ | David Z. Chen | 2014-02-23 |
|/ | | | | which is required for retrieving the libuv archive before building. | ||
* | Merge pull request #54 from mitchellwrosen/master | Ashley Hewson | 2014-02-23 |
|\ | | | | | Clean up main.c:parse_command_name | ||
| * | Clean up main.c:parse_command_name | Mitchell Rosen | 2014-02-22 |
| | | |||
* | | README.md: fix ubuntu/debian deps | Ashley Hewson | 2014-02-23 |
| | | |||
* | | Merge pull request #57 from mrshu/patch-1 | Thiago de Arruda | 2014-02-22 |
|\ \ | |/ |/| | Fixed travis image | ||
| * | Fixed travis image | Marek Šuppa | 2014-02-22 |
|/ | |||
* | First pass on getting build working on FreeBSD. | Sean Long | 2014-02-22 |
| | |||
* | Merge pull request #22 from cmrosenberg/osx-automake | Thiago de Arruda | 2014-02-22 |
|\ | | | | | Added automake as build dependency on OS X | ||
| * | Added automake as a dependency when building on OS X. Otherwise build ↵ | Carl Martin Rosenberg | 2014-02-22 |
| | | | | | | | | complaints of missing aclocal. | ||
* | | Add travis-ci configuration | Thiago de Arruda | 2014-02-22 |
| | | |||
* | | Merge pull request #47 from Coornail/ignore-test-vimrcs | Ashley Hewson | 2014-02-22 |
|\ \ | |/ |/| | Remove trailing spaces from gitignore | ||
| * | Remove trailing spaces from gitignore | Kornel Lugosi | 2014-02-22 |
|/ | |||
* | README.md: link to the Contributing wiki page | Ashley Hewson | 2014-02-22 |
| | |||
* | Cleanup refactoring in main | Mitchell Rosen | 2014-02-22 |
| | |||
* | Merge pull request #35 from thiderman/master | Thiago de Arruda | 2014-02-22 |
|\ | | | | | Add Arch dependency instructions to README.md. | ||
| * | Add Arch dependency instructions to README.md | Lowe Thiderman | 2014-02-22 |
| | | | | | | | | Also accidentally clear trailing whitespace in README. vim autocommands ftw. | ||
* | | include a copy of the Vim License | aph | 2014-02-22 |
|/ | |||
* | Merge pull request #32 from cweagans/patch-1 | Thiago de Arruda | 2014-02-22 |
|\ | | | | | Adding note about IRC channel in README. | ||
| * | Adding note about IRC channel in README. | Cameron Eagans | 2014-02-21 |
|/ | |||
* | Merge pull request #20 from andyfischer/master | Ashley Hewson | 2014-02-21 |
|\ | | | | | Update README.md: Add libtool to OSX installs | ||
| * | Add libtool to OSX installs | Andy Fischer | 2014-02-21 |
|/ | |||
* | Merge pull request #14 from sbeckeriv/patch-2 | Ashley Hewson | 2014-02-21 |
|\ | | | | | Update README.md | ||
| * | Update README.md | Stephen Becker IV | 2014-02-21 |
|/ | | | I did not have cmake installed. Mac tests passed. | ||
* | Merge pull request #11 from sbeckeriv/patch-1 | Thiago de Arruda | 2014-02-21 |
|\ | | | | | Remove sudo from brew command | ||
| * | Update README.md | Stephen Becker IV | 2014-02-21 |
|/ | | | | Remove sudo from brew command. https://github.com/Homebrew/homebrew/wiki/FAQ#wiki-sudo | ||
* | Merge pull request #8 from mmcdole/patch-1 | Thiago de Arruda | 2014-02-21 |
|\ | | | | | Fix spelling mistakes in README.md | ||
| * | Fix spelling mistakes in README.md | mmcdole | 2014-02-21 |
| | | |||
* | | Merge pull request #9 from yesmeck/patch-1 | Thiago de Arruda | 2014-02-21 |
|\ \ | |/ |/| | Correct cmake link in README | ||
| * | Fix cmake link in README | Meck | 2014-02-22 |
|/ | |||
* | Merge pull request #6 from davertron/master | Thiago de Arruda | 2014-02-21 |
|\ | | | | | Fix misspellings/grammar in README | ||
| * | Fix misspellings/grammar in README | davertron | 2014-02-21 |
| | | |||
* | | Merge pull request #7 from Coornail/osx-build-instructions | Thiago de Arruda | 2014-02-21 |
|\ \ | |/ |/| | Add dependency install instructions for OsX |