comparison src/ex_docmd.c @ 25294:c626fd34b66f v8.2.3184

patch 8.2.3184: cannot add a digraph with a leading space Commit: https://github.com/vim/vim/commit/6106504e9edc8500131f7a36e59bc146f90180fa Author: mityu <mityu.mail@gmail.com> Date: Mon Jul 19 20:07:21 2021 +0200 patch 8.2.3184: cannot add a digraph with a leading space Problem: Cannot add a digraph with a leading space. It is not easy to list existing digraphs. Solution: Add setdigraph(), setdigraphlist(), getdigraph() and getdigraphlist(). (closes #8580)
author Bram Moolenaar <Bram@vim.org>
date Mon, 19 Jul 2021 20:15:04 +0200
parents 8f2262c72178
children d39c12f97298
comparison
equal deleted inserted replaced
25293:d3f443bd2edd 25294:c626fd34b66f
9313 if (*eap->arg != NUL) 9313 if (*eap->arg != NUL)
9314 putdigraph(eap->arg); 9314 putdigraph(eap->arg);
9315 else 9315 else
9316 listdigraphs(eap->forceit); 9316 listdigraphs(eap->forceit);
9317 #else 9317 #else
9318 emsg(_("E196: No digraphs in this version")); 9318 emsg(_(e_no_digraphs_version));
9319 #endif 9319 #endif
9320 } 9320 }
9321 9321
9322 #if defined(FEAT_SEARCH_EXTRA) || defined(PROTO) 9322 #if defined(FEAT_SEARCH_EXTRA) || defined(PROTO)
9323 void 9323 void