aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
| * update_terminfo.sh: Use printf instead of echoJustin M. Keyes2018-12-28
| |
| * test: win/TUI builtin terminfosJustin M. Keyes2018-12-28
| |
| * Merge 'upstream/master' into pr-win-erw7Justin M. Keyes2018-12-27
| |\
| * | win/TUI: Fix scroll on Windows legacy consoleerw72018-12-27
| | |
| * | win/TUI: ConEmu: set immediate_wrap_after_last_column #9094erw72018-12-27
| | |
| * | win/TUI: builtin terminfos for cygwin, conemu, et al.erw72018-12-27
| | |
| * | win/TUI: SetConsoleMode() to override libuv #9094erw72018-12-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use uv_set_vterm_state() to override libuv's guess. See https://github.com/libuv/libuv/pull/1873/ for discussion. This commit uses a terminal-detection approach based on GetProcessImageFileNameW(...), which will be reverted in the following commit. The approach was intended to handle the case of running in winpty (:terminal), but we will add $NVIM env var for that. Also add some support for ConEmu, cygwin.
* | | appimage: Include metadata #9320pierre2018-12-30
| | | | | | | | | | | | | | | closes #9320 closes #9128
* | | Merge #9335 from justinmk/docJustin M. Keyes2018-12-30
|\ \ \
| * | | syntax/vim.vim: highlight <cmd> keyJustin M. Keyes2018-12-30
| | | |
| * | | help: Do not highlight "Nvim."Justin M. Keyes2018-12-30
| | | | | | | | | | | | | | | | | | | | This was added in 549311db7d400 for some reason, it usually just looks weird.
| * | | doc: Remove {Nvim} tagJustin M. Keyes2018-12-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The purpose of the {Nvim} hint was not well-defined, and its usage inconsistent. It's also unnecessary. Nvim-Vim differences are centralized at: :help vim-differences Removed things are centralized at: :help deprecated Developer guidelines for documentation are listed at: :help dev-doc
| * | | docJustin M. Keyes2018-12-30
|/ / / | | | | | | | | | - CMake features
* | | Merge pull request #9411 from jamessan/vim-8.1.0662James McCoy2018-12-30
|\ \ \ | | | | | | | | vim-patch:8.1.0662: needlessly searching for tilde in string
| * | | vim-patch:8.1.0662: needlessly searching for tilde in stringJames McCoy2018-12-30
|/ / / | | | | | | | | | | | | | | | Problem: Needlessly searching for tilde in string. Solution: Only check the first character. (James McCoy, closes vim/vim#3734) https://github.com/vim/vim/commit/ef0a1d5ed3566b91143d30ae9de3240f47c6e282
* | | Merge pull request #9409 from jamessan/vim-8.0.1469James McCoy2018-12-29
|\ \ \ | | | | | | | | [RFC] vim-patch:8.0.1469,8.0.1734,8.1.0353,8.1.0354
| * | | vim-patch:8.1.0354: packadd test fails on MS-WindowsJames McCoy2018-12-29
| | | | | | | | | | | | | | | | | | | | | | | | Problem: Packadd test fails on MS-Windows. Solution: Ignore difference between forward and backward slashes. https://github.com/vim/vim/commit/53c8a478cc4265549597b00214e0da812154742e
| * | | vim-patch:8.1.0353: an "after" directory of a package is appended to 'rtp'James McCoy2018-12-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: An "after" directory of a package is appended to 'rtp', which will be after the user's "after" directory. () Solution: Insert the package "after" directory before any other "after" directory in 'rtp'. (closes vim/vim#3409) https://github.com/vim/vim/commit/99396d4cbf78d313a454c7448acc07412d2e45b7
| * | | vim-patch:8.0.1734: package directory not added to 'rtp' if prefix matchesJames McCoy2018-12-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Package directory not added to 'rtp' if prefix matches. Solution: Check the match is a full match. (Ozaki Kiichi, closes vim/vim#2817) Also handle different ways of spelling a path. https://github.com/vim/vim/commit/f98a39ca57d001ba3e24831bae1e375790fb41f0
| * | | vim-patch:8.0.1469: when package path is a symlink 'runtimepath' is wrongJames McCoy2018-12-29
|/ / / | | | | | | | | | | | | | | | | | | | | | Problem: When package path is a symlink adding it to 'runtimepath' happens at the end. Solution: Do not resolve symlinks before locating the position in 'runtimepath'. (Ozaki Kiichi, closes vim/vim#2604) https://github.com/vim/vim/commit/2374faae111057ee28e8d487f9a52a95855e2206
* | | TUI: enter/exit alternate screen with "title stacking" (#9407)Justin M. Keyes2018-12-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Works in iTerm2 and xterm. - patch_terminfo_bugs(): Add title-stacking sequences (\e[22t and \e[23t) to the overrides for iTerm2 and xterm. - Note: the builtins (terminfo_defs.h) for `iterm_256colour_terminfo` and `xterm_256colour_terminfo` already include the sequences. Test case (title should be "foo" after the final :q): TERM=iterm2 nvim -u NONE +'set title titleold=foo' :q TERM=iterm2 nvim -u NONE +'set title titlestring=zub' :q closes #4063
* | | Merge #9383 from jamessan/stdpath-rpluginJustin M. Keyes2018-12-28
|\ \ \ | |_|/ |/| | Use stdpath() to determine rplugin manifest path
| * | rplugin.vim: Add migration support for Windows, nvim/ -> nvim-data/James McCoy2018-12-27
| | |
| * | Use stdpath() to determine rplugin manifest pathJames McCoy2018-12-20
| | |
* | | Merge pull request #9398 from janlazo/mac-brew-addonJustin M. Keyes2018-12-27
|\ \ \
| * | | ci: install neovim gem on macOSJan Edmund Lazo2018-12-27
| | | | | | | | | | | | | | | | High Sierra has ruby 2.3 preinstalled so neovim gem should work.
| * | | ci: use homebrew addon to simplify shell scriptsJan Edmund Lazo2018-12-26
|/ / /
* | | Merge pull request #9394 from bfredl/highsignBjörn Linse2018-12-24
|\ \ \ | | | | | | | | make vim_snprintf handle %d correctly again, fix ":sign place" output
| * | | strings: make vim_snprintf handle %d correctly againBjörn Linse2018-12-24
|/ / / | | | | | | | | | This was broken in #9369 (4680ca2)
* | | vim-patch:8.1.0627: Python cannot handle function name of script-local ↵Jan Edmund Lazo2018-12-23
| | | | | | | | | | | | | | | | | | | | | | | | function (#9392) Problem: Python cannot handle function name of script-local function. Solution: Use <SNR> instead of the special byte code. (Ozaki Kiichi, closes vim/vim#3681) https://github.com/vim/vim/commit/9123c0b31a283f460ed2b6af95080120cf528118
* | | vim-patch:8.1.0615: get_tv function names are not consistent (#9386)Daniel Hahler2018-12-22
| | | | | | | | | | | | | | | | | | | | | Problem: Get_tv function names are not consistent. Solution: Rename to tv_get. https://github.com/vim/vim/commit/d155d7a8519987361169459b8d464ae1caef5e9c Only a change in comments appears to be necessary.
* | | Merge pull request #9384 from bfredl/ui_option_checkBjörn Linse2018-12-21
|\ \ \ | | | | | | | | test/api: verify that UI options from stable metadata are preserved
| * | | test/api: verify that UI options from stable metadata are preservedBjörn Linse2018-12-21
| |/ /
* | | CI/Travis: skip all refs except "master" [skip ci]Justin M. Keyes2018-12-21
| | |
* | | CI/Travis: skip "stable" tag [skip ci]Justin M. Keyes2018-12-21
| | |
* | | win/dist: nvim-qt v0.2.11 #9382Justin M. Keyes2018-12-21
|/ /
* | Merge #9280 'Lua 5.2+ compatbility'Justin M. Keyes2018-12-20
|\ \
| * | lintJustin M. Keyes2018-12-20
| | |
| * | runtime/lua/vim/compat.luaJustin M. Keyes2018-12-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ref #9280 Introduce the `vim.compat` module, to help environments with system Lua 5.2+ run the build/tests. Include the module implicitly in all tests. ref #8677 legacy `vim` module: beep buffer command dict eval firstline lastline line list open type window
| * | test: Lua 5.2/5.3 compat #9280Matěj Cepl2018-12-20
|/ / | | | | | | | | Make the code run both on Lua 5.1 (which is the default for Neovim, and is what LuaJIT provides) and Lua 5.2+.
* | Merge #9369 'vim-patch:8.1.0596'Justin M. Keyes2018-12-19
|\ \
| * | strings: use (u)int16_t for %h printf formatJan Edmund Lazo2018-12-16
| | |
| * | vim-patch:8.1.0596: not all parts of printf() are testedJan Edmund Lazo2018-12-16
| | | | | | | | | | | | | | | | | | Problem: Not all parts of printf() are tested. Solution: Add a few more test cases. (Dominique Pelle, closes vim/vim#3691) https://github.com/vim/vim/commit/21e551cce26ea6ff389b6c90f1945facf1a8a066
* | | genappimage: Unset $ARGV0 at invocation #9376erw72018-12-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | AppImage sets $ARGV0 which breaks zsh. Hack around this in our appimage. fixes #9341 ref https://github.com/AppImage/AppImageKit/issues/852 [ci skip]
* | | l10n: Update Ukrainian translation #9377Anatolii Sakhnik2018-12-19
|/ /
* | Merge pull request #9077 from jamessan/xdg-sysinitJames McCoy2018-12-16
|\ \ | | | | | | startup: Use $XDG_CONFIG_DIRS/nvim/sysinit.vim if it exists
| * | startup: Use $XDG_CONFIG_DIRS/nvim/sysinit.vim if it existsJames McCoy2018-12-16
| | | | | | | | | | | | Closes #8994
* | | Merge #9347 from justinmk/tui-bsdJustin M. Keyes2018-12-16
|\ \ \ | | | | | | | | TUI: detect BSD vt console
| * | | TUI: TERM=nstermJustin M. Keyes2018-12-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Treat TERM=nsterm the same way in augment_terminfo() and patch_terminfo_bugs(). ref #9244 463d28cc8079
| * | | TUI: detect BSD vt consoleJustin M. Keyes2018-12-16
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | FreeBSD console sets TERM=xterm, but it does not support xterm features like cursor-shaping. GUI terminals typically set TERM=xterm-256color, so on FreeBSD we can guess that TERM=xterm is the degraded vt. OpenBSD console sets TERM=vt220 https://github.com/openbsd/src/blob/master/etc/etc.amd64/ttys NetBSD console sets TERM=vt100 https://github.com/NetBSD/src/blob/trunk/etc/etc.amd64/ttys closes #8644