Rainer Borene
0099f6148c
legacy tests: migrate test_listlbr_utf8
2015-03-11 00:22:23 -04:00
Rainer Borene
0f97f52ded
legacy tests: migrate test98
2015-03-11 00:22:22 -04:00
Rainer Borene
9c40721ea4
legacy tests: migrate test103
2015-03-11 00:22:22 -04:00
Rainer Borene
05fcce3896
legacy tests: migrate test_qf_title
2015-03-11 00:00:22 -04:00
Rainer Borene
b18cd63260
legacy tests: migrate test100
2015-03-11 00:00:22 -04:00
John Szakmeister
f7332273cc
third-party: change all references to libunibilium to just unibilium
2015-03-10 18:38:41 -04:00
John Szakmeister
e1ad8ae724
third-party: fix some whitespace issues from the recent splitting
2015-03-10 06:04:06 -04:00
John Szakmeister
51c6f38fca
Merge pull request #2061 from equalsraf/tb-split-recipes
...
Split third-party recipes into multiple files
2015-03-10 06:01:12 -04:00
Rui Abreu Ferreira
85492e86bd
Split third-party recipes into multiple files
2015-03-09 13:24:21 +00:00
Björn Linse
a7aeda8c7a
tests/ui: Also test character at cursor
2015-03-09 08:01:49 -03:00
John Szakmeister
638452da2a
Merge pull request #2082 from jszakmeister/fixes-for-busted-and-luajit
...
tests: prevent busted from reloading the ffi module and others
2015-03-09 05:47:48 -04:00
John Szakmeister
973b5135cc
Merge pull request #2116 from medvid/disable-static
...
deps: Provide options to disable static linkage
2015-03-09 05:22:49 -04:00
Gustaf Lindstedt
2d65ccf06c
test: migrate legacy test 77 #2046
...
Migrate legacy test 77 which tests mf_hash_grow() to lua/busted.
2015-03-08 23:27:54 -04:00
Justin M. Keyes
927ff6f326
Merge #2081 'avoid spurious rebuilds from git operations'
2015-03-08 21:54:57 -04:00
Björn Linse
e0f8eea9f1
version: don't use NVIM_VERSION_* directly outside version.c
...
This avoids recompiles after commiting.
2015-03-08 21:54:57 -04:00
Björn Linse
4f92178a75
config: split out versiondef.h from config.h
...
This avoids recompiling every c file after comitting.
2015-03-08 21:54:57 -04:00
Anton Ovchinnikov
9925b3a047
Remove redundant casts
2015-03-09 00:40:50 +01:00
Thiago de Arruda
d2e13d3b3d
deps: Update libvterm
2015-03-08 20:37:02 -03:00
Volodymyr Medvid
f7d5839d0c
deps: Provide options to disable static linkage
...
Allow dynamic linkage to libunibilium, libtermkey and libvterm.
2015-03-08 23:29:47 +02:00
Geoff Harcourt
c0a668aa26
docs: Clean up python, provider, remote_plugin #2056
...
* "Python" is a proper noun and should be capitalized in prose
* Corrected use of "its/it's"
* Used better preposition to describe something "in" legacy Vim
* Combine fragments into complete sentence
2015-03-08 17:23:48 -04:00
oni-link
681125eb94
Compiler warns about uninitialized object in vim_eval().
...
In case of an evaluation error the returned Object is not initialized,
so initialize it with OBJECT_INIT.
2015-03-08 13:15:00 +01:00
oni-link
fe4920f138
Remove unnecessary assert() in os_dirname().
...
Compiler warns about buf always being nonnull.
buf is per function attribute always nonnull, so buf can be removed from
the assert(). But a buffer length of zero is also no problem, because it
makes uv_cwd() return a failure without writing into buf. So the
remaining length check can also be removed.
2015-03-08 13:01:16 +01:00
Chase Geigle
da457a176b
tui: fall back to underline for undercurl. #2099
...
closes #2098
2015-03-07 21:10:24 -05:00
Floris van Liere
57811dec95
set_init_1: mb_init() on fallback encoding (utf8) #2106
...
Explanation:
Running `:set encoding=utf-8` _after_ startup correctly initializes
multibyte; but mb_init() was _not_ called during startup if locale
detection (enc_locale()) failed. This wasn't a problem in Vim because
the Vim default encoding (latin1) does not require mb_init(). But Nvim
defaults to utf8, so mb_init() is required.
closes #1271
closes #1672
2015-03-07 17:53:04 -05:00
John Szakmeister
85f5115723
Merge pull request #2110 from xu-cheng/sha256
...
Switch to SHA256 for third-party bundles downloading
2015-03-06 04:30:30 -05:00
Xu Cheng
d11e5b5d0d
Switch to SHA256 for third-party bundles downloading
...
Closes #2107
2015-03-06 15:31:08 +08:00
Justin M. Keyes
a06186de41
Merge #2011 'Macro cleanup'
2015-03-05 19:03:37 -05:00
Michael Reed
117bf11e19
Macro cleanup: USE_UNIXFILENAME
2015-03-05 19:03:36 -05:00
Michael Reed
4d7b31fd61
Macro cleanup: USE_ON_FLY_SCROLL
2015-03-05 19:03:36 -05:00
Michael Reed
49e7164165
Macro cleanup: USER_HIGHLIGHT
2015-03-05 19:03:36 -05:00
Michael Reed
cf663588d9
Macro cleanup: USE_EXE_NAME
2015-03-05 19:03:35 -05:00
Michael Reed
0925870d0c
Macro cleanup: ONE_CLIPBOARD
2015-03-05 19:03:35 -05:00
Michael Reed
70a7517d17
Macro cleanup: UNICODE16
...
Fix clint warnings as well.
2015-03-05 19:03:35 -05:00
Michael Reed
c5c3eb99d3
Macro cleanup: SPACE_IN_FILENAME
2015-03-05 19:03:35 -05:00
Michael Reed
357583ff8c
Macro cleanup: HAVE_SANDBOX
2015-03-05 19:03:34 -05:00
oni-link
0dd1ad0760
vim-patch:7.4.578
...
Problem: Using getcurpos() after "$" in an empty line returns a negative
number.
Solution: Don't add one when this would overflow. (Hirohito Higashi)
https://code.google.com/p/vim/source/detail?r=v7-4-578
2015-03-04 18:25:52 +01:00
Carlos Castillo
a4c3ac2799
remote_ui: Fix error messages #2045
...
Make the error messages more precise and uniform.
2015-03-04 00:21:55 -05:00
Björn Linse
5be040ffe4
jobsend: Don't append extra newline after last item
...
This allows sending binary data that is not newline terminated
2015-03-03 20:18:24 +01:00
John Szakmeister
6b7ece6cc8
Merge pull request #2083 from fwalch/fix-deps-32
...
deps: Fix building 32-bit Lua rocks.
2015-03-02 04:58:44 -05:00
Florian Walch
a4b96f2f11
deps: Fix building 32-bit Lua rocks.
...
* Force building Lua rocks instead of trying to install a binary.
* Set the CC and LD environment variables to pass
CMAKE_C_COMPILER_ARG1 (contains `-m32` for 32-bit builds)
to `luarocks build`.
2015-03-02 09:54:24 +01:00
John Szakmeister
d8ef23849a
tests: prevent busted from reloading the ffi module and others
...
It turns out that Busted started cleaning the environment in 2.0rc5 as a
result of Olivine-Labs/busted#62 . This, in turn, caused the ffi module
to be reloaded for each spec file, and LuaJIT doesn't appreciate it.
The net effect is an assertion error in LuaJIT.
By using the --helper feature of Busted, we can pre-load some modules
ahead of Busted and prevent it from reloading them--making LuaJIT happy
again.
2015-03-01 15:25:39 -05:00
John Szakmeister
ea35062589
Merge pull request #2075 from jszakmeister/dont-hardcode-tty-test-path
...
tests: don't hardcode the path to tty-test
2015-03-01 15:24:00 -05:00
John Szakmeister
32951edc9d
Merge pull request #2079 from jszakmeister/test-fixes-for-busted
...
tests: require luassert in the helpers
2015-03-01 15:07:05 -05:00
John Szakmeister
235909044a
tests: require luassert in the helpers
...
This is necessary for newer versions of Busted, otherwise assert will be
nil and the tests will die.
Note: this does not mean the tests now work with the latest Busted.
There are still several issues preventing that from happening.
2015-03-01 09:00:27 -05:00
John Szakmeister
c1e8d12aa3
tests: don't hardcode the path to tty-test
...
This fixes the build for those who drive the build directly using
CMake.
2015-02-28 10:46:56 -05:00
Thiago de Arruda
4bebdd1cd9
deps: Small fix for PR #2072
...
A newer version of luafilesystem than the one reported by busted rockspec is
required for the unit tests.
Also update libvterm sha1/url
2015-02-28 11:12:51 -03:00
Thiago de Arruda
c6482eb598
Merge PR #2072 'Add custom target for pinning busted dependencies'
2015-02-28 10:43:52 -03:00
Thiago de Arruda
81a346553c
deps: Add libvterm to the project dependencies
...
libvterm is a terminal emulation library with abstract display. It will be used
to implement builtin terminal emulation into Nvim.
2015-02-28 10:41:53 -03:00
Thiago de Arruda
585e5d32a3
deps: Add custom target for pinning busted dependencies
...
busted depends on a number of libraries that sometimes introduce crashing bugs.
The new custom target makes sure only stable versions of those dependencies are
installed.
2015-02-28 10:30:29 -03:00
Numkil
bbc9eff9ae
test: mark job/pty test as pending #2058
...
- closes #2057
- see https://github.com/neovim/neovim/issues/2057 for discussion
2015-02-26 19:23:37 -05:00