comparison src/getchar.c @ 15850:a6ca8cf07a98 v8.1.0932

patch 8.1.0932: Farsi support is outdated and unused commit https://github.com/vim/vim/commit/14184a3133b9a6ee5f711d493c04e41ba4fa7c2f Author: Bram Moolenaar <Bram@vim.org> Date: Sat Feb 16 15:10:30 2019 +0100 patch 8.1.0932: Farsi support is outdated and unused Problem: Farsi support is outdated and unused. Solution: Delete the Farsi support.
author Bram Moolenaar <Bram@vim.org>
date Sat, 16 Feb 2019 15:15:07 +0100
parents dd2e0b83a660
children 7fad90423bd2
comparison
equal deleted inserted replaced
15849:c478f5603556 15850:a6ca8cf07a98
3358 if (STRICMP(rhs, "<nop>") == 0) /* "<Nop>" means nothing */ 3358 if (STRICMP(rhs, "<nop>") == 0) /* "<Nop>" means nothing */
3359 rhs = (char_u *)""; 3359 rhs = (char_u *)"";
3360 else 3360 else
3361 rhs = replace_termcodes(rhs, &arg_buf, FALSE, TRUE, special); 3361 rhs = replace_termcodes(rhs, &arg_buf, FALSE, TRUE, special);
3362 } 3362 }
3363
3364 #ifdef FEAT_FKMAP
3365 /*
3366 * When in right-to-left mode and alternate keymap option set,
3367 * reverse the character flow in the rhs in Farsi.
3368 */
3369 if (p_altkeymap && curwin->w_p_rl)
3370 lrswap(rhs);
3371 #endif
3372 3363
3373 /* 3364 /*
3374 * check arguments and translate function keys 3365 * check arguments and translate function keys
3375 */ 3366 */
3376 if (haskey) 3367 if (haskey)