From 763de8dd8fe92d47f5d9bd13c94eb18ac21b9794 Mon Sep 17 00:00:00 2001 From: Edwin Pujols <73705427+shade-of-noon@users.noreply.github.com> Date: Fri, 11 Dec 2020 08:43:29 -0400 Subject: macros.h: Remove unused CURSOR_BAR_RIGHT macro. (#13506) Closes #13505. --- src/nvim/macros.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/nvim/macros.h') diff --git a/src/nvim/macros.h b/src/nvim/macros.h index 07dcb4a8e8..303722b4a8 100644 --- a/src/nvim/macros.h +++ b/src/nvim/macros.h @@ -98,9 +98,6 @@ # define UTF_COMPOSINGLIKE(p1, p2) utf_composinglike((p1), (p2)) -// Whether to draw the vertical bar on the right side of the cell. -# define CURSOR_BAR_RIGHT (curwin->w_p_rl && (!(State & CMDLINE) || cmdmsg_rl)) - // MB_PTR_ADV(): advance a pointer to the next character, taking care of // multi-byte characters if needed. // MB_PTR_BACK(): backup a pointer to the previous character, taking care of -- cgit