KillTheMule
7b29dfc43a
vim-patch:256972a
...
Updated runtime files.
https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Missing files in runtime/doc: todo.txt, tags. Patch to runtime/doc/syntax.txt
was applied manually in part, for no discernible reason.
2016-05-03 21:22:45 +02:00
KillTheMule
b634cfcc19
vim-patch:2c5e8e8
...
Updated runtime files.
https://github.com/vim/vim/commit/2c5e8e80eacf491d4f266983f534a77776c7ae83
Missing files in runtime/doc: if_ruby.txt, tags, todo.txt. Ignored changes to
runtime/syntax/vim.vim.
2016-05-03 21:15:47 +02:00
KillTheMule
9d1c52239a
vim-patch:d042dc8
...
Update runtime files.
https://github.com/vim/vim/commit/d042dc825c9b97dacd84d4728f88300da4d5b6b9
Missing in runtime/doc: hangulin.txt, tags, todo.txt. The changes to options.txt
do not apply for nvim. man.vim is very different in nvim, some changes applied
manually, others discarded.
2016-05-03 21:13:41 +02:00
KillTheMule
95d376dc88
vim-patch:e392eb4
...
Update runtime files.
https://github.com/vim/vim/commit/e392eb41f8dfc01bd13634e534ac6b4d505326f4
Files runtime/doc/tags and runtime/doc/todo.txt did not exist. Ignored
runtime/syntax/vim.vim. One change in runtime/doc/windows.txt had already been
applied.
2016-05-03 21:09:03 +02:00
KillTheMule
367b1893e7
vim-patch:b4ff518
...
Updated runtime files.
https://github.com/vim/vim/commit/b4ff518d95aa57c2f8c0568c915035bef849581b
Missing files: runtime/doc/tags, runtime/doc/todo.txt. Changes to
runtime/doc/if_pyth.txt, runtime/doc/options.txt and runtime/doc/quickref.txt
did not aply. Excluded runtime/syntax/vim.vim.
2016-05-03 21:03:17 +02:00
KillTheMule
c535cc7dde
vim-patch:d7464be
...
Updated runtime files.
https://github.com/vim/vim/commit/d7464be9747fcaa8e6210e1f00a3882932df76e2
Applied cleanly except for runtime/docs/todo.txt and runtime/docs/tags.
2016-05-03 20:59:26 +02:00
KillTheMule
3c45e3b42a
vim-patch:a0f849e
...
Update runtime files.
https://github.com/vim/vim/commit/a0f849ee40cbea3c889345256786b640b0becca2
Missing files runtime/doc/tags and runtime/doc/todo.txt. Excluded
runtime/syntax/vim.vim, since we diverged quite a bit from vim in this file.
2016-05-03 19:25:18 +02:00
Justin M. Keyes
4ff793eaab
Merge pull request #4655 from brcolow/vim-7.4.1035
...
vim-patch: 7.4.1035
2016-04-27 21:53:05 -04:00
Justin M. Keyes
e4146dd7df
remove disable_char_avail_for_testing()
...
test_cursor_func.vim hangs at the call to
disable_char_avail_for_testing(). The test does not actually need this
function (and it correctly fails if the fix from 7.4.1300 is reverted).
Given that disable_char_avail_for_testing is a gigantic hack, if we can
avoid it let's do so.
2016-04-26 23:32:01 -04:00
Michael Ennen
cc410185c0
vim-patch: 7.4.1035
...
Problem: An Ex range gets adjusted for folded lines even when the range is
not using line numbers.
Solution: Only adjust line numbers for folding. (Christian Brabandt)
https://github.com/vim/vim/commit/a3306958dcb9aadff1e1e8521d908d86b10ac99a
2016-04-26 20:22:11 -07:00
Justin M. Keyes
67d5a1aae2
vim-patch:7.4.1092
...
Problem: It is not simple to test for an exception and give a proper error
message.
Solution: Add assert_exception().
https://github.com/vim/vim/commit/a803c7f94070f94b831fdfd1984f288c8b825b5d
2016-04-25 06:34:29 -04:00
KillTheMule
3d73956b96
Add documentation for disable_char_avail_for_testing, handpicked from
...
https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
https://github.com/vim/vim/commit/7823a3bd2eed6ff9e544d201de96710bd5344aaf
2016-04-25 06:34:28 -04:00
Justin M. Keyes
ef205c3851
Merge pull request #4325 from watiko/vim-7.4.984
...
vim-patch:7.4.{984,1093}
2016-04-25 04:17:45 -04:00
Justin M. Keyes
588bc1d958
Merge #4303 'vim-patch:7.4.{951,1143,1144}'.
2016-04-25 03:56:33 -04:00
Justin M. Keyes
121e76db6f
Merge pull request #4273 from watiko/vim-7.4.957
...
vim-patch:7.4.{941,942,957}
2016-04-25 03:20:45 -04:00
Justin M. Keyes
3d7a6e4d54
Merge pull request #4367 from jbradaric/vim-7.4.1107
...
vim-patch:7.4.{1107,1114,1116,1117,1120}
2016-04-22 04:11:45 -04:00
Justin M. Keyes
89e6973fe2
tcd: doc, error messages
2016-04-21 03:15:08 -04:00
HiPhish
ec71d87b81
Implement tab-local working directory feature.
...
New ex commands: 'tcd', 'tchdir'
Changed Vimscript functions: 'haslocaldir', 'getcwd'
The ex-commands ':tcd' and ':tchdir' are the tab-local equivalents of
':lcd' and ':lchdir'. There are no new Vimscript functions introduced,
instead the functions 'haslocaldir' and 'getcwd' take in optional
arguments. See the documentation for details
Since there is now different levels of local directory a simple boolean
at source level is no longer sufficient; a new enumeration type is used
for the scope-level from now on.
The documentation has been accommodated for these new commands and
functional tests have been written to test the feature.
2016-04-20 12:52:31 +02:00
Jurica Bradaric
88a735166b
vim-patch:7.4.1114
...
Problem: delete() does not work well with symbolic links.
Solution: Recognize symbolik links.
https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
2016-04-20 08:25:51 +02:00
Jurica Bradaric
50a7517a6d
vim-patch:7.4.1107
...
Problem: Vim can create a directory but not delete it.
Solution: Add an argument to delete() to make it possible to delete a
directory, also recursively.
https://github.com/vim/vim/commit/da440d21a6b94d7f525fa7be9b1417c78dd9aa4c
2016-04-20 08:25:16 +02:00
Rui Abreu Ferreira
5c6592fdab
v:windowid #4608
...
Set v:windowid as writeable (but read only in the sandbox).
References #3626
2016-04-19 02:49:34 -04:00
Justin M. Keyes
ba9bdb3e70
Merge pull request #4604 from dbarnett/vim-60cce2f
...
vim-patch:60cce2f
2016-04-19 01:02:25 -04:00
Justin M. Keyes
1cb8afed78
doc: remove redundant, outdated section.
...
The new content from bf635102 is retained.
2016-04-19 00:57:25 -04:00
David Barnett
43fe335eda
vim-patch:60cce2f
...
Update runtime files.
https://github.com/vim/vim/commit/60cce2fb736c8ff6fdb9603f502d3c15f1f7a25d
2016-04-18 21:50:37 -07:00
David Barnett
0d264abdd0
vim-patch:ca63501
...
Update various runtime files.
https://github.com/vim/vim/commit/ca63501fbcd1cf9c8aa9ff12c093c95b62a89ed7
2016-04-18 21:36:16 -07:00
David Barnett
bf63510228
vim-patch:12969c0
...
Update documentation and syntax files.
https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
2016-04-18 21:16:14 -07:00
David Barnett
49dde999c0
vim-patch:f913281 (runtime/doc/)
...
Updated and new runtime files.
https://github.com/vim/vim/commit/f91328100db34996ed7e7a800bed0a30ff0890dd
2016-04-18 20:15:22 -07:00
Justin M. Keyes
ca280c28b4
Merge pull request #4594 from dbarnett/vim-88774f
...
vim-patch:88774f
2016-04-17 20:34:49 -04:00
David Barnett
896f548eee
vim-patch:88774f
...
Updated runtime files and Italian messages.
https://github.com/vim/vim/commit/88774fdd23f08355297bb8cda78856859051d3c7
2016-04-17 17:19:00 -07:00
ZyX
9709cf2cdb
documentation: Update assert_{false,true}() and empty() documentation
...
Also removes a note regarding the performance of `empty(long_list)` vs
`len(long_list) == 0` because this has nothing to do with the actual state:
first checks that list is not NULL and pointer to its first element is also not
NULL, second gets length by comparing list with NULL and falls back to
`tv->vval.v_list->lv_len` if not. `len(long_list)` *may* still be *slightly*
slower, but the slow down has nothing to do with the length of the list, is
hardly noticeable and depends on how good compiler is at inlining and what
exactly have author of the plugin written (I mean `len(long_list) == 0` vs
`empty(long_list)` vs `!len(long_list)`).
2016-04-18 02:48:20 +03:00
ZyX
4f8b686435
documentation,functests: State that UTF-8-only support is intentional
2016-04-18 02:48:20 +03:00
ZyX
1bada1fde0
documentation: Update type() documentation
2016-04-18 02:48:20 +03:00
ZyX
2f67786796
eval: Rename json* functions to json_*
2016-04-18 02:48:20 +03:00
ZyX
0aa3e7b7ce
eval: Port parts of 7.4.1267 that are not already present
2016-04-18 02:46:34 +03:00
ZyX
6167ce6df2
eval: Remove v:none
...
To get v:none back just rever this commit. This will not make json*() functions
compatible with Vim though.
2016-04-18 02:45:49 +03:00
ZyX
57700def79
doc: Update documentation regarding converting from/to &encoding
2016-04-18 02:45:49 +03:00
ZyX
cddd7d47c3
eval/decode: Make msgpackparse() function use new v: vars
2016-04-18 02:45:49 +03:00
ZyX
e213ba1506
eval: Add jsondecode() function
2016-04-18 02:45:49 +03:00
ZyX
d70a322c40
eval: Add special variables v:false, v:null, v:none
2016-04-18 02:44:03 +03:00
ZyX
68e58444b4
eval: Add jsonencode() function
...
Ref #3471
2016-04-18 02:44:03 +03:00
Justin M. Keyes
aae7e8b7dd
Merge pull request #4585 from dbarnett/vim-fc39ec
...
vim-patch:fc39ec
2016-04-17 18:44:25 -04:00
David Barnett
2895883154
vim-patch:fc39ec
...
Update runtime files.
https://github.com/vim/vim/commit/fc39ecf8ded5466d7e9cbde8db75517718b023d8
2016-04-16 23:06:24 -07:00
Shougo Matsushita
b50afb4651
clipboard: support "lemonade" tool
2016-04-17 13:38:57 +09:00
Justin M. Keyes
523ff9c55c
test: defaults_spec.lua
2016-04-15 02:23:27 -04:00
Justin M. Keyes
fe4d814c0f
Merge pull request #4559 from ZyX-I/undodir-undo-doc-update
...
documentation: Update information about default location of undo files
2016-04-11 00:08:16 -04:00
ZyX
b25b6048ca
documentation: Update information about default location of undo files
2016-04-11 07:00:57 +03:00
Justin M. Keyes
1bf1ffc734
Merge pull request #4505 from watiko/vim-runtimes
...
vim-patch:86ae720,f913281,dd1616e
2016-04-10 01:43:07 -04:00
Justin M. Keyes
bf2c2b34cf
Merge pull request #4357 from jbradaric/vim-7.4.1105
...
vim-patch:7.4.1105
2016-04-09 14:14:55 -04:00
Chiel Kooijman
5330aa104b
doc: formatting #4543
2016-04-08 18:01:07 -04:00
Panashe Fundira
2df8f88b3c
doc: Fix tiny typo in :bufdo section
...
[ci skip]
2016-04-08 17:58:14 -04:00