aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdwin Pujols <73705427+shade-of-noon@users.noreply.github.com>2020-12-11 08:43:29 -0400
committerGitHub <noreply@github.com>2020-12-11 07:43:29 -0500
commit763de8dd8fe92d47f5d9bd13c94eb18ac21b9794 (patch)
treed33794bf41cf91ca8ebf5acafc20923de3f5aa78
parentfaa47eafffe35ddfdee44d341d7dc06e97377b28 (diff)
downloadrneovim-763de8dd8fe92d47f5d9bd13c94eb18ac21b9794.tar.gz
rneovim-763de8dd8fe92d47f5d9bd13c94eb18ac21b9794.tar.bz2
rneovim-763de8dd8fe92d47f5d9bd13c94eb18ac21b9794.zip
macros.h: Remove unused CURSOR_BAR_RIGHT macro. (#13506)
Closes #13505.
-rw-r--r--src/nvim/macros.h3
1 files changed, 0 insertions, 3 deletions
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