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

Skip to content

Tags: telamonian/vim

Tags

v8.0.0858

Toggle v8.0.0858's commit message
patch 8.0.0858: can exit while a terminal is still running a job

Problem:    Can exit while a terminal is still running a job.
Solution:   Consider a buffer with a running job like a changed file.

v8.0.0857

Toggle v8.0.0857's commit message
patch 8.0.0857: terminal test fails on MS-Windows

Problem:    Terminal test fails on MS-Windows.
Solution:   Sleep a fraction of a second.

v8.0.0856

Toggle v8.0.0856's commit message
patch 8.0.0856: MS-Windows: terminal job doesn't take options

Problem:    MS-Windows: terminal job doesn't take options.
Solution:   Call job_set_options(). (Yasuhiro Matsumoto)

v8.0.0855

Toggle v8.0.0855's commit message
patch 8.0.0855: MS-Windows: can't get tty name of terminal

Problem:    MS-Windows: can't get tty name of terminal.
Solution:   Use the winpty process number. (Yasuhiro Matsumoto, closes vim#1929)

v8.0.0854

Toggle v8.0.0854's commit message
patch 8.0.0854: no redraw after terminal was closed

Problem:    No redraw after terminal was closed.
Solution:   Set typebuf_was_filled. (Yasuhiro Matsumoto, closes vim#1925, closes
            vim#1924)  Add function to check for messages even when input is
            available.

v8.0.0853

Toggle v8.0.0853's commit message
patch 8.0.0853: crash when running terminal with unknown command

Problem:    Crash when running terminal with unknown command.
Solution:   Check "term" not to be NULL. (Yasuhiro Matsumoto, closes vim#1932)

v8.0.0852

Toggle v8.0.0852's commit message
patch 8.0.0852: MS-Windows: possible crash when giving a message on s…

…tartup

Problem:    MS-Windows: possible crash when giving a message on startup.
Solution:   Initialize length. (Yasuhiro Matsumoto, closes vim#1931)

v8.0.0851

Toggle v8.0.0851's commit message
patch 8.0.0851: 'smartindent' is used even when 'indentexpr' is set

Problem:    'smartindent' is used even when 'indentexpr' is set.
Solution:   Ignore 'smartindent' when 'indentexpr' is set. (Hirohito Higashi)

v8.0.0850

Toggle v8.0.0850's commit message
patch 8.0.0850: MS-Windows: error message while starting up may be br…

…oken

Problem:    MS-Windows: Depending on the console encoding, an error message
            that is given during startup may be broken.
Solution:   Convert the message to the console codepage. (Yasuhiro Matsumoto,
            closes vim#1927)

v8.0.0849

Toggle v8.0.0849's commit message
patch 8.0.0849: crash when job exit callback wipes the terminal

Problem:    Crash when job exit callback wipes the terminal.
Solution:   Check for b_term to be NULL.  (Yasuhiro Matsumoto, closes vim#1922)
            Implement options for term_start() to be able to test.
            Make term_wait() more reliable.