How about this:
Place the character U + 202d that you want to combine at the top of the ring by typing M-: (kill-new "\u202d") . You can then output this string to various search commands using Cy (e.g., query-replace ) or My (e.g., isearch-forward ).
(Edited to add :)
You can also just invoke commands non-interactively, which does not cause keyboard input problems like interactive calls. For example, enter M-: and then:
(replace-string "\u202d" "")
This is somewhat similar to your version of Vim. One of the differences is that it only performs replacements from the cursor position at the bottom of the file (or narrowed area), so you will need to go to the beginning of the file (or narrowed area) before running the command to replace all matches.
Sean
source share