diff src/testdir/test_messages.vim @ 17833:8377ec7c5824 v8.1.1913

patch 8.1.1913: not easy to compute the space on the command line Commit: https://github.com/vim/vim/commit/37f4cbd46f5a6f2dd3a48d5fa4324dce37e4bd6c Author: Bram Moolenaar <Bram@vim.org> Date: Fri Aug 23 20:58:45 2019 +0200 patch 8.1.1913: not easy to compute the space on the command line Problem: Not easy to compute the space on the command line. Solution: Add v:echospace. (Daniel Hahler, closes https://github.com/vim/vim/issues/4732)
author Bram Moolenaar <Bram@vim.org>
date Fri, 23 Aug 2019 21:00:05 +0200
parents 6990c1160ea5
children 8a2fb21c23c0
line wrap: on
line diff
--- a/src/testdir/test_messages.vim
+++ b/src/testdir/test_messages.vim
@@ -155,3 +155,20 @@ func Test_mode_message_at_leaving_insert
   exe buf . 'bwipe!'
   call delete(testfile)
 endfunc
+
+func Test_echospace()
+  set noruler noshowcmd laststatus=1
+  call assert_equal(&columns - 1, v:echospace)
+  split
+  call assert_equal(&columns - 1, v:echospace)
+  set ruler
+  call assert_equal(&columns - 1, v:echospace)
+  close
+  call assert_equal(&columns - 19, v:echospace)
+  set showcmd noruler
+  call assert_equal(&columns - 12, v:echospace)
+  set showcmd ruler
+  call assert_equal(&columns - 29, v:echospace)
+
+  set ruler& showcmd&
+endfunc