From 435d0182d293e70b14a5655c976c3c6daa6ea765 Mon Sep 17 00:00:00 2001 From: dundargoc Date: Sat, 29 Jun 2024 11:46:20 +0200 Subject: refactor: remove special handling for lowercase German sharp s MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit utf8proc already defines LATIN CAPITAL LETTER SHARP S (ẞ) to be the uppercase variant of LATIN SMALL LETTER SHARP S (ß), so this special workaround when using `gU` is no longer needed on the neovim side. --- src/nvim/ops.c | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'src/nvim/ops.c') diff --git a/src/nvim/ops.c b/src/nvim/ops.c index 8f8baaf619..7bffb12412 100644 --- a/src/nvim/ops.c +++ b/src/nvim/ops.c @@ -2148,18 +2148,6 @@ bool swapchar(int op_type, pos_T *pos) return false; } - // ~ is OP_NOP, g~ is OP_TILDE, gU is OP_UPPER - if ((op_type == OP_UPPER || op_type == OP_NOP || op_type == OP_TILDE) && c == 0xdf) { - pos_T sp = curwin->w_cursor; - - // Special handling for lowercase German sharp s (ß): convert to uppercase (ẞ). - curwin->w_cursor = *pos; - del_char(false); - ins_char(0x1E9E); - curwin->w_cursor = sp; - return true; - } - int nc = c; if (mb_islower(c)) { if (op_type == OP_ROT13) { -- cgit