[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: "ctrl+shift+u codepoint enter"
From: |
Pierre-Henry F. |
Subject: |
Re: "ctrl+shift+u codepoint enter" |
Date: |
Mon, 29 Apr 2019 20:06:44 +0000 |
‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
On Monday, April 29, 2019 9:16 PM, Damien Collard <damien.collard@distfp.net>
wrote:
> On Lun, avr 29 2019, Stefan Monnier wrote:
>
> > > > > (Emacs' default binding for insert-char is C-x 8 RET).
> > > > > With the neat feature that you don't have to hammer in the hex code,
> > > > > but you can also start typing "smi" and TAB and you are offered all
> > > > > the codes whose Unicode name starts with SMI, from "SMILE" through
> > > > > "SMILING CAT FACE WITH HEART-SHAPED EYES" up to "SMIRKING FACE".
> > > > > And if you use Helm, C-c h 8 (bound to `helm-ucs`) is like C-x 8 RET
> > > > > but
> > > > > also shows the characters themselves, not just their unicode names
> >
> > AFAIK `C-x 8 RET` also shows the characters themselves (next to their
> > name).
>
> I stand corrected. On my config C-x 8 RET is handled by Helm too and
> doesn't show the characters, I had forgotten the vanilla C-x 8 RET does.
>
> Damien
Thank you all for your kind messages.
So, here is where I got:
(define-key global-map (kbd "C-S-u") 'insert-char) ;; Thanks for that!
$ setxkbmap us
at:
https://github.com/qmk/qmk_firmware/blob/master/quantum/process_keycode/process_unicode_common.c#L109#L124
replace: `tap_code(KC_SPC);`
with: `tap_code(KC_ENTER);`
Compile & flash the thing;
It works!
Problem: I need `$ setxkbmap fr`. With `fr` everything breaks again...
- "ctrl+shift+u codepoint enter", Pierre-Henry F., 2019/04/28
- Re: "ctrl+shift+u codepoint enter", Noam Postavsky, 2019/04/28
- Re: "ctrl+shift+u codepoint enter", tomas, 2019/04/29
- Re: "ctrl+shift+u codepoint enter", Pierre-Henry F., 2019/04/29
- Re: "ctrl+shift+u codepoint enter", Damien Collard, 2019/04/29
- Re: "ctrl+shift+u codepoint enter", Joost Kremers, 2019/04/29
- Re: "ctrl+shift+u codepoint enter", Stefan Monnier, 2019/04/29
- Re: "ctrl+shift+u codepoint enter", Noam Postavsky, 2019/04/29
- Re: "ctrl+shift+u codepoint enter", Stefan Monnier, 2019/04/29
- Re: "ctrl+shift+u codepoint enter", Damien Collard, 2019/04/29
- Re: "ctrl+shift+u codepoint enter",
Pierre-Henry F. <=