aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Merge pull request #4247 from watiko/vim-7.4.903Justin M. Keyes2016-02-21
|\ | | | | vim-patch:7.4.{831,832,845,903}
| * path.c: Fulfill the `@returns` conditionswatiko2016-02-21
| | | | | | | | Original-author: oni-link <knil.ino@gmail.com>
| * vim-patch:7.4.903watiko2016-02-21
| | | | | | | | | | | | | | | | Problem: MS-Windows: When 'encoding' differs from the current code page, expandinig wildcards may cause illegal memory access. Solution: Allocate a longer buffer. (Ken Takata) https://github.com/vim/vim/commit/7314efd87d8c4095229bdc2867a553c36c064918
| * vim-patch:7.4.845watiko2016-02-21
| | | | | | | | | | | | | | Problem: Compiler warning for possible loss of data. Solution: Add a type cast. (Erich Ritz) https://github.com/vim/vim/commit/5df1ed2de3fa9dcace996b9a0a4c9b3cea79cf1e
| * vim-patch:7.4.832watiko2016-02-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: $HOME in `=$HOME . '/.vimrc'` is expanded too early. Solution: Skip over `=expr` when expanding environment names. https://github.com/vim/vim/commit/be83b73ddb2ee8297037166d243f72e3423a3ce3 --- To reproduce: ```sh nvim -u NONE -c 'e `=$HOME . "/.vimrc"`' ```
| * vim-patch:7.4.831watiko2016-02-21
| | | | | | | | | | | | | | | | Problem: When expanding `=expr` on the command line and encountering an error, the command is executed anyway. Solution: Bail out when an error is detected. https://github.com/vim/vim/commit/3f188935ec4db5117c4a64cc3f71219175624745
* | Merge pull request #4313 from Yamakaky/fltoJustin M. Keyes2016-02-21
|\ \ | |/ |/| Enable link-time optimisations on Release build.
| * Enable link-time optimisations on Release build.Yamakaky2016-02-21
|/ | | | Fixes https://github.com/neovim/neovim/issues/3136
* Merge pull request #4296 from mhinz/fix-termcloseJustin M. Keyes2016-02-21
|\ | | | | Make TermClose event return the associated buffer
| * Tests: check <abuf> from TermCloseMarco Hinz2016-02-21
| |
| * Make TermClose event return the associated bufferMarco Hinz2016-02-21
| | | | | | | | | | | | | | <abuf> from the TermClose event now returns the correct buffer number. Prior to this change it would always return the buffer number of the current buffer, which is obviously wrong in an async environment.
* | Merge pull request #4306 from justinmk/termauJustin M. Keyes2016-02-20
|\ \ | |/ |/| terminal_open: do not force autocmds
| * terminal_open: do not force autocmdsJustin M. Keyes2016-02-19
| |
* | Merge #4249 'tests: migrate charsearch'Justin M. Keyes2016-02-20
|\ \
| * | test: charsearch: Fix error/typo in legacy test.Lucas Hoffmann2016-02-20
| | | | | | | | | | | | | | | Error was reported upstream in vim/vim#650, fixed in 7.4.1366. Typo was fixed upstream in 7.4.1041.
| * | tests: Remove old charset test after migration.Lucas Hoffmann2016-02-20
| | |
| * | tests: Migrate legacy charsearch test.Lucas Hoffmann2016-02-20
|/ /
* | Merge pull request #4298 from tomxtobin/fix-help-typoFelipe Morales2016-02-19
|\ \ | | | | | | doc: Remove stray "<" in options help
| * | Remove stray "<" in options helpTom X. Tobin2016-02-19
| | | | | | | | | | | | Normally this would end an example, but there's no example block here.
* | | Merge pull request #4264 from watiko/vim-7.4.922Felipe Morales2016-02-19
|\ \ \ | |/ / |/| | vim-patch:7.4.922
| * | vim-patch:7.4.922watiko2016-02-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Leaking memory with ":helpt {dir-not-exists}". Solution: Free dirname. (Dominique Pelle) https://github.com/vim/vim/commit/1c2836e268ce930bca9ea1287d0d83e92ce1b3ff --- see: "[patch] command :helpt {dir} leaks memory when directory does not exist" https://groups.google.com/d/msg/vim_dev/WbcIbZ9YdUA/4eow2c3_AgAJ
* | | Merge pull request #4240 from jbradaric/vim-7.4.888Justin M. Keyes2016-02-19
|\ \ \ | | | | | | | | vim-patch:7.4.888
| * | | test: Fix lint errorwatiko2016-02-15
| | | |
| * | | test: Add test cases to legacy test autocmd_optionwatiko2016-02-15
| | | |
| * | | eval: Fix linter error.Jurica Bradaric2016-02-15
| | | |
| * | | vim-patch:7.4.888Jurica Bradaric2016-02-15
| |/ / | | | | | | | | | | | | | | | | | | Problem: The OptionSet autocommands are not triggered from setwinvar(). Solution: Do not use switch_win() when not needed. (Hirohito Higashi) https://github.com/vim/vim/commit/ba117c23dfd1146aca3235bea172df17a48bccee
* | | Merge pull request #4294 from justinmk/coverityJustin M. Keyes2016-02-19
|\ \ \ | |_|/ |/| | coverity
| * | coverity/135593: Error handling issues (CHECKED_RETURN)Justin M. Keyes2016-02-19
| | | | | | | | | | | | | | | Harmless issue (HI): retval is intentionally ignored, as is the wont of didset_options() and friends.
| * | coverity/135589: (FP) Null pointer dereferencesJustin M. Keyes2016-02-19
|/ / | | | | | | | | False positive: buflist_findnr() should not be NULL in this case because it is given a buffer number that (should be) guaranteed to exist.
* | Merge pull request #4280 from mhinz/add-issue-templateJustin M. Keyes2016-02-18
|\ \ | | | | | | Add ISSUE_TEMPLATE.md
| * | Add ISSUE_TEMPLATE.mdMarco Hinz2016-02-19
|/ / | | | | | | | | | | This is a new Github feature: https://github.com/blog/2111-issue-and-pull-request-templates
* | Merge pull request #4276 from justinmk/coverity135578Justin M. Keyes2016-02-17
|\ \ | | | | | | coverity/135578: Memory - illegal accesses
| * | coverity/135578: Memory - illegal accessesJustin M. Keyes2016-02-16
| | | | | | | | | | | | Harmless issue, but doesn't hurt to satisfy coverity here.
* | | Merge pull request #4239 from jbradaric/vim-7.4.885Justin M. Keyes2016-02-17
|\ \ \ | | | | | | | | vim-patch:7.4.885
| * | | vim-patch:7.4.885Jurica Bradaric2016-02-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: When doing an upwards search without wildcards the search fails if the initial directory doesn't exist. Solution: Fix the non-wildcard case. (Stefan Kempf) https://github.com/vim/vim/commit/c79a5452acd695238798947e40086f9823c400e7
* | | | vim-patch:7.4.859 #4238Jurica Bradaric2016-02-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Vim doesn't recognize all htmldjango files. Solution: Recognize a comment. (Daniel Hahler, PR #410) https://github.com/vim/vim/commit/d8986fd91494642b3bab305406aa55268498f49c
* | | | Merge pull request #4244 from watiko/vim-7.4.830Justin M. Keyes2016-02-17
|\ \ \ \ | | | | | | | | | | vim-patch:7.4.{830,833}
| * | | | vim-patch:7.4.833watiko2016-02-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: More side effects of ":set all&" are missing. (Björn Linse) Solution: Call didset_options() and add didset_options2() to collect more side effects to take care of. Still not everything... https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
| * | | | vim-patch:7.4.830watiko2016-02-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Resetting 'encoding' when doing ":set all&" causes problems. (Bjorn Linse) Display is not updated. Solution: Do not reset 'encoding'. Do a full redraw. https://github.com/vim/vim/commit/b341dda575899458f7075614dcedf0a80ee9d080 --- ":set all&" does not reset 'encoding' in neovim.
* | | | | Merge pull request #4234 from watiko/vim-7.4.977Justin M. Keyes2016-02-17
|\ \ \ \ \ | | | | | | | | | | | | vim-patch:7.4.{818,883,977}
| * | | | | vim-patch:7.4.977watiko2016-02-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: 'linebreak' does not work properly when using "space" in 'listchars'. Solution: (Hirohito Higashi, Christian Brabandt) https://github.com/vim/vim/commit/9bc01ebb957d2b30d57bd30d7aee6f1df2a336b0
| * | | | | vim-patch:7.4.883watiko2016-02-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Block-mode replace works characterwise instead of blockwise after column 147. (Issue #422) Solution: Set Visual mode. (Christian Brabandt) https://github.com/vim/vim/commit/10ad1d90da8c464e1bf08bf23d92d4888378a8a1
| * | | | | vim-patch:7.4.818watiko2016-02-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: 'linebreak' breaks c% if the last Visual selection was block. (Chris Morganiser, Issue 389) Solution: Handle Visual block mode differently. (Christian Brabandt) https://github.com/vim/vim/commit/89c17c02cac7594c6bb85900d73b1dc70aa78306
* | | | | | Merge pull request #4230 from jbradaric/vim-7.4.853Justin M. Keyes2016-02-17
|\ \ \ \ \ \ | | | | | | | | | | | | | | vim-patch:7.4.{853,856}
| * | | | | | vim-patch:7.4.856Jurica Bradaric2016-02-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: "zt" still doesn't work well with filler lines. (Gary Johnson) Solution: Check for filler lines above the cursor. (Christian Brabandt) https://github.com/vim/vim/commit/a09a2c5857ab854f0870573b5160da1964c905a2
| * | | | | | vim-patch:7.4.853Jurica Bradaric2016-02-09
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: "zt" in diff mode does not always work properly. (Gary Johnson) Solution: Don't count filler lines twice. (Christian Brabandt) https://github.com/vim/vim/commit/cf619daa8e0ef9a335f27f65eb74e422a17d4f92
* | | | | | Merge pull request #4229 from jbradaric/vim-7.4.847Justin M. Keyes2016-02-17
|\ \ \ \ \ \ | | | | | | | | | | | | | | vim-patch:7.4.847
| * | | | | | vim-patch:7.4.847Jurica Bradaric2016-02-10
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: "vi)d" may leave a character behind. Solution: Skip over multi-byte character. (Christian Brabandt) https://github.com/vim/vim/commit/8667d66ca923d361e00e6369cbff37283db5a432
* | | | | | vim-patch:7.4.844 #4228Jurica Bradaric2016-02-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: When '#' is in 'isident' the is# comparator doesn't work. Solution: Don't use vim_isIDc(). (Yasuhiro Matsumoto) https://github.com/vim/vim/commit/37a8de17d4dfd3d463960c38a204ce399c8e19d4
* | | | | | Merge pull request #4213 from jbradaric/vim-7.4.835Justin M. Keyes2016-02-17
|\ \ \ \ \ \ | | | | | | | | | | | | | | vim-patch:7.4.{835,843,877}