summaryrefslogtreecommitdiff
path: root/runtime/doc
Commit message (Collapse)AuthorAgeFilesLines
* Updated runtime filesBram Moolenaar2016-02-2713-68/+36
|
* patch 7.4.1438v7.4.1438Bram Moolenaar2016-02-272-4/+15
| | | | | Problem: Can't get buffer number of a channel. Solution: Add ch_getbufnr().
* patch 7.4.1435v7.4.1435Bram Moolenaar2016-02-272-25/+49
| | | | | | Problem: It is confusing that ch_sendexpr() and ch_sendraw() wait for a response. Solution: Add ch_evalexpr() and ch_evalraw().
* patch 7.4.1433v7.4.1433Bram Moolenaar2016-02-271-87/+3
| | | | | | Problem: The Sniff interface is no longer useful, the tool has not been available for may years. Solution: Delete the Sniff interface and related code.
* patch 7.4.1430v7.4.1430Bram Moolenaar2016-02-271-8/+6
| | | | | | | Problem: When encoding JSON, turning NaN and Infinity into null without giving an error is not useful. Solution: Pass NaN and Infinity on. If the receiver can't handle them it will generate the error.
* patch 7.4.1426v7.4.1426Bram Moolenaar2016-02-271-22/+44
| | | | | Problem: The "out-io" option for jobs is not implemented yet. Solution: Implement the "buffer" value: append job output to a buffer.
* patch 7.4.1425v7.4.1425Bram Moolenaar2016-02-261-267/+6
| | | | | Problem: There are still references to MS-DOS support. Solution: Remove most of the help txt and install instructions. (Ken Takata)
* patch 7.4.1419v7.4.1419Bram Moolenaar2016-02-251-0/+4
| | | | | Problem: Tests slowed down because of the "not a terminal" warning. Solution: Add the --not-a-term command line argument.
* patch 7.4.1418v7.4.1418Bram Moolenaar2016-02-251-15/+21
| | | | | | Problem: job_stop() on MS-Windows does not really stop the job. Solution: Make the default to stop the job forcefully. (Ken Takata) Make MS-Windows and Unix more similar.
* Updated runtime files.Bram Moolenaar2016-02-2510-85/+84
|
* patch 7.4.1402v7.4.1402Bram Moolenaar2016-02-233-4/+18
| | | | | Problem: GTK 3 is not supported. Solution: Add GTK 3 support. (Kazunobu Kuriyama)
* patch 7.4.1387v7.4.1387Bram Moolenaar2016-02-221-5/+0
| | | | | Problem: Win16 docs still referenced. Solution: Remove Win16 files from the docs Makefile. (Kenichi Ito)
* patch 7.4.1384v7.4.1384Bram Moolenaar2016-02-214-24/+104
| | | | | Problem: It is not easy to use a set of plugins and their dependencies. Solution: Add packages, ":loadopt", 'packpath'.
* patch 7.4.1382v7.4.1382Bram Moolenaar2016-02-212-72/+124
| | | | | Problem: Can't get the job of a channel. Solution: Add ch_getjob().
* Update channel.txtBram Moolenaar2016-02-201-22/+56
|
* patch 7.4.1375v7.4.1375Bram Moolenaar2016-02-201-186/+0
| | | | | Problem: Still some Win16 code. Solution: Remove FEAT_GUI_W16.(Hirohito Higashi)
* Updated runtime files.Bram Moolenaar2016-02-2012-73/+226
|
* patch 7.4.1341v7.4.1341Bram Moolenaar2016-02-162-23/+29
| | | | | | Problem: It's difficult to add more arguments to ch_sendraw() and ch_sendexpr(). Solution: Make the third option a dictionary.
* patch 7.4.1333v7.4.1333Bram Moolenaar2016-02-161-1/+2
| | | | | Problem: Channel test fails on non-darwin builds. Solution: Add the "osx" feature and test for that. (Kazunobu Kuriyama)
* Update runtime files.Bram Moolenaar2016-02-1511-148/+481
|
* patch 7.4.1310v7.4.1310Bram Moolenaar2016-02-131-33/+71
| | | | | | Problem: Jobs don't open a channel. Solution: Create pipes and add them to the channel. Add ch_logfile(). Only Unix for now.
* patch 7.4.1304v7.4.1304Bram Moolenaar2016-02-111-18/+20
| | | | | | Problem: Function names are difficult to read. Solution: Rename jsonencode to json_encode, jsondecode to json_decode, jsencode to js_encode and jsdecode to js_decode.
* Updated runtime files.Bram Moolenaar2016-02-074-24/+57
|
* patch 7.4.1279v7.4.1279Bram Moolenaar2016-02-072-17/+39
| | | | | | Problem: jsonencode() is not producing strict JSON. Solution: Add jsencode() and jsdecode(). Make jsonencode() and jsondecode() strict.
* patch 7.4.1274v7.4.1274Bram Moolenaar2016-02-072-18/+103
| | | | | | Problem: Cannot run a job. Solution: Add job_start(), job_status() and job_stop(). Currently only works for Unix.
* patch 7.4.1263v7.4.1263Bram Moolenaar2016-02-052-20/+41
| | | | | Problem: ch_open() hangs when the server isn't running. Solution: Add a timeout. Use a dict to pass arguments. (Yasuhiro Matsumoto)
* Update runtime files.Bram Moolenaar2016-02-046-44/+74
|
* patch 7.4.1244v7.4.1244Bram Moolenaar2016-02-021-25/+29
| | | | | Problem: The channel functions don't sort together. Solution: Use a common "ch_" prefix.
* Updated runtime files and translations.Bram Moolenaar2016-02-0112-59/+94
|
* patch 7.4.1229v7.4.1229Bram Moolenaar2016-01-311-17/+66
| | | | | Problem: "eval" and "expr" channel commands don't work yet. Solution: Implement them. Update the error numbers. Also add "redraw".
* patch 7.4.1215v7.4.1215Bram Moolenaar2016-01-301-3/+1
| | | | | | Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
* Update runtime files.Bram Moolenaar2016-01-286-41/+85
|
* patch 7.4.1191v7.4.1191Bram Moolenaar2016-01-283-1/+258
| | | | | | Problem: The channel feature isn't working yet. Solution: Add the connect(), disconnect(), sendexpr() and sendraw() functions. Add initial documentation. Add a demo server.
* patch 7.4.1188v7.4.1188Bram Moolenaar2016-01-281-17/+13
| | | | | Problem: Using older JSON standard. Solution: Update the link. Adjust the text a bit.
* Update a few runtime files.Bram Moolenaar2016-01-243-9/+53
|
* patch 7.4.1154v7.4.1154Bram Moolenaar2016-01-231-1/+40
| | | | | | Problem: No support for JSON. Solution: Add jsonencode() and jsondecode(). Also add v:false, v:true, v:null and v:none.
* Update runtime filesBram Moolenaar2016-01-216-52/+127
|
* patch 7.4.1150v7.4.1150Bram Moolenaar2016-01-211-0/+5
| | | | | | | Problem: 'langmap' applies to the first character typed in Select mode. (David Watson) Solution: Check for SELECTMODE. (Christian Brabandt, closes #572) Add the 'x' flag to feedkeys().
* patch 7.4.1149v7.4.1149Bram Moolenaar2016-01-211-3/+3
| | | | | | Problem: Using the local value of 'errorformat' causes more problems than it solves. Solution: Revert 7.4.1013.
* patch 7.4.1143v7.4.1143Bram Moolenaar2016-01-191-6/+14
| | | | | | Problem: Can't sort on floating point numbers. Solution: Add the "f" flag to ":sort". (Alex Jakushev) Also add the "f" flag to sort().
* patch 7.4.1142v7.4.1142Bram Moolenaar2016-01-192-2/+31
| | | | | Problem: Cannot define keyword characters for a syntax file. Solution: Add the ":syn iskeyword" command. (Christian Brabandt)
* Update help files.Bram Moolenaar2016-01-177-85/+75
|
* patch 7.4.1126v7.4.1126Bram Moolenaar2016-01-171-6/+21
| | | | | | Problem: Can only get the directory of the current window. Solution: Add window and tab arguments to getcwd() and haslocaldir(). (Thinca, Hirohito Higashi)
* patch 7.4.1125v7.4.1125Bram Moolenaar2016-01-172-1/+14
| | | | | Problem: There is no perleval(). Solution: Add perleval(). (Damien)
* patch 7.4.1114v7.4.1114Bram Moolenaar2016-01-171-3/+4
| | | | | Problem: delete() does not work well with symbolic links. Solution: Recognize symbolik links.
* patch 7.4.1107v7.4.1107Bram Moolenaar2016-01-161-6/+20
| | | | | | 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.
* patch 7.4.1104v7.4.1104Bram Moolenaar2016-01-161-0/+23
| | | | | | Problem: Various problems building with MzScheme/Racket. Solution: Make it work with new versions of Racket. (Yukihiro Nakadaira, Ken Takata)
* patch 7.4.1102v7.4.1102Bram Moolenaar2016-01-161-2/+30
| | | | | | Problem: Debugger has no stack backtrace support. Solution: Add "backtrace", "frame", "up" and "down" commands. (Alberto Fanjul, closes #433)
* Update runtime filesBram Moolenaar2016-01-157-100/+239
|
* patch 7.4.1096v7.4.1096Bram Moolenaar2016-01-151-0/+6
| | | | | | Problem: Need several lines to verify a command produces an error. Solution: Add assert_fails(). (suggested by Nikolay Pavlov) Make the quickfix alloc test actually work.