summaryrefslogtreecommitdiff
path: root/runtime/doc
AgeCommit message (Collapse)Author
2016-03-12patch 7.4.1546Bram Moolenaar
Problem: Sticky type checking is more annoying than useful. Solution: Remove the error for changing a variable type.
2016-03-12patch 7.4.1541Bram Moolenaar
Problem: Missing job_info(). Solution: Implement it.
2016-03-12Updated runtime files.Bram Moolenaar
2016-03-09patch 7.4.1528Bram Moolenaar
Problem: Using "ever" for packages is confusing. Solution: Use "start", as it's related to startup.
2016-03-08patch 7.4.1516Bram Moolenaar
Problem: Cannot change file permissions. Solution: Add setfperm().
2016-03-07Update runtime files.Bram Moolenaar
2016-03-06patch 7.4.1499Bram Moolenaar
Problem: No error message when :packadd does not find anything. Solution: Add an error message. (Hirohito Higashi)
2016-03-04Update runtime files.Bram Moolenaar
2016-03-04patch 7.4.1486Bram Moolenaar
Problem: ":loadplugin" is not optimal, some people find it confusing. Solution: Only use ":packadd" with an optional "!".
2016-03-03patch 7.4.1480Bram Moolenaar
Problem: Cannot add a pack direcory without loading a plugin. Solution: Add the :packadd command.
2016-02-27Updated runtime filesBram Moolenaar
2016-02-27patch 7.4.1438Bram Moolenaar
Problem: Can't get buffer number of a channel. Solution: Add ch_getbufnr().
2016-02-27patch 7.4.1435Bram Moolenaar
Problem: It is confusing that ch_sendexpr() and ch_sendraw() wait for a response. Solution: Add ch_evalexpr() and ch_evalraw().
2016-02-27patch 7.4.1433Bram Moolenaar
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.
2016-02-27patch 7.4.1430Bram Moolenaar
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.
2016-02-27patch 7.4.1426Bram Moolenaar
Problem: The "out-io" option for jobs is not implemented yet. Solution: Implement the "buffer" value: append job output to a buffer.
2016-02-26patch 7.4.1425Bram Moolenaar
Problem: There are still references to MS-DOS support. Solution: Remove most of the help txt and install instructions. (Ken Takata)
2016-02-25patch 7.4.1419Bram Moolenaar
Problem: Tests slowed down because of the "not a terminal" warning. Solution: Add the --not-a-term command line argument.
2016-02-25patch 7.4.1418Bram Moolenaar
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.
2016-02-25Updated runtime files.Bram Moolenaar
2016-02-23patch 7.4.1402Bram Moolenaar
Problem: GTK 3 is not supported. Solution: Add GTK 3 support. (Kazunobu Kuriyama)
2016-02-22patch 7.4.1387Bram Moolenaar
Problem: Win16 docs still referenced. Solution: Remove Win16 files from the docs Makefile. (Kenichi Ito)
2016-02-21patch 7.4.1384Bram Moolenaar
Problem: It is not easy to use a set of plugins and their dependencies. Solution: Add packages, ":loadopt", 'packpath'.
2016-02-21patch 7.4.1382Bram Moolenaar
Problem: Can't get the job of a channel. Solution: Add ch_getjob().
2016-02-20Update channel.txtBram Moolenaar
2016-02-20patch 7.4.1375Bram Moolenaar
Problem: Still some Win16 code. Solution: Remove FEAT_GUI_W16.(Hirohito Higashi)
2016-02-20Updated runtime files.Bram Moolenaar
2016-02-16patch 7.4.1341Bram Moolenaar
Problem: It's difficult to add more arguments to ch_sendraw() and ch_sendexpr(). Solution: Make the third option a dictionary.
2016-02-16patch 7.4.1333Bram Moolenaar
Problem: Channel test fails on non-darwin builds. Solution: Add the "osx" feature and test for that. (Kazunobu Kuriyama)
2016-02-15Update runtime files.Bram Moolenaar
2016-02-13patch 7.4.1310Bram Moolenaar
Problem: Jobs don't open a channel. Solution: Create pipes and add them to the channel. Add ch_logfile(). Only Unix for now.
2016-02-11patch 7.4.1304Bram Moolenaar
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.
2016-02-07Updated runtime files.Bram Moolenaar
2016-02-07patch 7.4.1279Bram Moolenaar
Problem: jsonencode() is not producing strict JSON. Solution: Add jsencode() and jsdecode(). Make jsonencode() and jsondecode() strict.
2016-02-07patch 7.4.1274Bram Moolenaar
Problem: Cannot run a job. Solution: Add job_start(), job_status() and job_stop(). Currently only works for Unix.
2016-02-05patch 7.4.1263Bram Moolenaar
Problem: ch_open() hangs when the server isn't running. Solution: Add a timeout. Use a dict to pass arguments. (Yasuhiro Matsumoto)
2016-02-04Update runtime files.Bram Moolenaar
2016-02-02patch 7.4.1244Bram Moolenaar
Problem: The channel functions don't sort together. Solution: Use a common "ch_" prefix.
2016-02-01Updated runtime files and translations.Bram Moolenaar
2016-01-31patch 7.4.1229Bram Moolenaar
Problem: "eval" and "expr" channel commands don't work yet. Solution: Implement them. Update the error numbers. Also add "redraw".
2016-01-30patch 7.4.1215Bram Moolenaar
Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
2016-01-28Update runtime files.Bram Moolenaar
2016-01-28patch 7.4.1191Bram Moolenaar
Problem: The channel feature isn't working yet. Solution: Add the connect(), disconnect(), sendexpr() and sendraw() functions. Add initial documentation. Add a demo server.
2016-01-28patch 7.4.1188Bram Moolenaar
Problem: Using older JSON standard. Solution: Update the link. Adjust the text a bit.
2016-01-24Update a few runtime files.Bram Moolenaar
2016-01-23patch 7.4.1154Bram Moolenaar
Problem: No support for JSON. Solution: Add jsonencode() and jsondecode(). Also add v:false, v:true, v:null and v:none.
2016-01-21Update runtime filesBram Moolenaar
2016-01-21patch 7.4.1150Bram Moolenaar
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().
2016-01-21patch 7.4.1149Bram Moolenaar
Problem: Using the local value of 'errorformat' causes more problems than it solves. Solution: Revert 7.4.1013.
2016-01-19patch 7.4.1143Bram Moolenaar
Problem: Can't sort on floating point numbers. Solution: Add the "f" flag to ":sort". (Alex Jakushev) Also add the "f" flag to sort().