Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: kiloliter/vim

Tags

v8.0.1386

Toggle v8.0.1386's commit message
patch 8.0.1386: cannot select modified buffers with getbufinfo()

Problem:    Cannot select modified buffers with getbufinfo().
Solution:   Add the "bufmodified" flag. (Yegappan Lakshmanan, closes vim#2431)

v8.0.1385

Toggle v8.0.1385's commit message
patch 8.0.1385: Python 3.5 is getting old

Problem:    Python 3.5 is getting old.
Solution:   Make Python 3.6 the default. (Ken Takata, closes vim#2429)

v8.0.1384

Toggle v8.0.1384's commit message
patch 8.0.1384: not enough quickfix help; confusing winid

Problem:    Not enough quickfix help; confusing winid.
Solution:   Add more examples in the help. When the quickfix window is not
            present, return zero for getqflist() with 'winid'. Add more tests
            for jumping to quickfix list entries. (Yegappan Lakshmanan, closes
            vim#2427)

v8.0.1383

Toggle v8.0.1383's commit message
patch 8.0.1383: local additions in help skips some files

Problem:    Local additions in help skips some files. (joshklod)
Solution:   Check the base file name length equals.

v8.0.1382

Toggle v8.0.1382's commit message
patch 8.0.1382: get "no write since last change" message if terminal …

…is open

Problem:    Get "no write since last change" message if a terminal is open.
            (Fritz mehner)
Solution:   Don't consider a buffer changed if it's a terminal window.

v8.0.1381

Toggle v8.0.1381's commit message
patch 8.0.1381: ch_readraw() waits for NL if channel mode is NL

Problem:    ch_readraw() waits for NL if channel mode is NL.
Solution:   Pass a "raw" flag to channel_read_block(). (Yasuhiro Matsumoto)

v8.0.1380

Toggle v8.0.1380's commit message
patch 8.0.1380: using "vim -r swapfile" the hit-enter prompt is mispl…

…aced.

Problem:    When recovering a file with "vim -r swapfile" the hit-enter prompt
            is at the top of the window.
Solution:   Invalidate the cursor position.

v8.0.1379

Toggle v8.0.1379's commit message
patch 8.0.1379: configure check for selinux does not check for header…

… file

Problem:    Configure check for selinux does not check for header file.
Solution:   Add an AC_CHECK_HEADER(). (Benny Siegert)

v8.0.1378

Toggle v8.0.1378's commit message
patch 8.0.1378: autoload script sources itself when defining function

Problem:    Autoload script sources itself when defining function.
Solution:   Pass TFN_NO_AUTOLOAD to trans_function_name(). (Yasuhiro
            Matsumoto, closes vim#2423)

v8.0.1377

Toggle v8.0.1377's commit message
patch 8.0.1377: cannot call a dict function in autoloaded dict

Problem:    Cannot call a dict function in autoloaded dict.
Solution:   Call get_lval() passing the read-only flag.