comparison src/ex_docmd.c @ 15152:1ef429366fd4 v8.1.0586

patch 8.1.0586: :digraph output is not easy to read commit https://github.com/vim/vim/commit/eae8ae1b2b4e532b125077d9838b70d966891be3 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Dec 14 18:53:02 2018 +0100 patch 8.1.0586: :digraph output is not easy to read Problem: :digraph output is not easy to read. Solution: Add highlighting for :digraphs. (Marcin Szamotulski, closes https://github.com/vim/vim/issues/3572) Also add section headers for :digraphs!.
author Bram Moolenaar <Bram@vim.org>
date Fri, 14 Dec 2018 19:00:05 +0100
parents b101b193d5ff
children 90ab2d3ce11d
comparison
equal deleted inserted replaced
15151:2721834e8539 15152:1ef429366fd4
12411 { 12411 {
12412 #ifdef FEAT_DIGRAPHS 12412 #ifdef FEAT_DIGRAPHS
12413 if (*eap->arg != NUL) 12413 if (*eap->arg != NUL)
12414 putdigraph(eap->arg); 12414 putdigraph(eap->arg);
12415 else 12415 else
12416 listdigraphs(); 12416 listdigraphs(eap->forceit);
12417 #else 12417 #else
12418 EMSG(_("E196: No digraphs in this version")); 12418 EMSG(_("E196: No digraphs in this version"));
12419 #endif 12419 #endif
12420 } 12420 }
12421 12421