summaryrefslogtreecommitdiffstats
path: root/src/ex_docmd.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-12-14 18:53:02 +0100
committerBram Moolenaar <Bram@vim.org>2018-12-14 18:53:02 +0100
commiteae8ae1b2b4e532b125077d9838b70d966891be3 (patch)
treeeb6c5f10a8e0315d03a6a0988a56f64fe61b5651 /src/ex_docmd.c
parent56242f2b08737677812513c447955579a19aa620 (diff)
patch 8.1.0586: :digraph output is not easy to readv8.1.0586
Problem: :digraph output is not easy to read. Solution: Add highlighting for :digraphs. (Marcin Szamotulski, closes #3572) Also add section headers for :digraphs!.
Diffstat (limited to 'src/ex_docmd.c')
-rw-r--r--src/ex_docmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index 99a06fc342..c738d0798c 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -12413,7 +12413,7 @@ ex_digraphs(exarg_T *eap UNUSED)
if (*eap->arg != NUL)
putdigraph(eap->arg);
else
- listdigraphs();
+ listdigraphs(eap->forceit);
#else
EMSG(_("E196: No digraphs in this version"));
#endif