tab command for unicode characters
See original GitHub issueSome languages (Julia is one, there may be others) allow the user to write unicode characters via a tab completion command (i.e., you would write something like \alpha
and then press the Tab key).
This works in jupyter notebooks, but not in JupyterLab as the Tab is reserved.
Is there a workaround?
Issue Analytics
- State:
- Created 6 years ago
- Comments:10 (4 by maintainers)
Top Results From Across the Web
html - How to get a tab character? - Stack Overflow
Tab is [HT], or character number 9, in the unicode library.
Read more >Unicode Character 'CHARACTER TABULATION' (U+0009)
Unicode Character 'CHARACTER TABULATION' (U+0009) ; Mirror, N ; Old name, CHARACTER TABULATION ; Index entries, horizontal tabulation tab. TABULATION, CHARACTER
Read more >⭾ - Horizontal Tab Key: U+2B7E - Unicode Character Table
Symbol : ⭾, Name of the character: horizontal tab key, Unicode number for the sign: U+2B7E, the icon is included in the block:...
Read more >ASCII Code for the TAB Character? (Want to be able to input ...
The ASCII code for tab is 09. · Pressing Alt + 09 in an online form might not provide you Tab character probably...
Read more >Tab key - Wikipedia
Unicode Edit · U+2409 ␉ SYMBOL FOR HORIZONTAL TABULATION · U+240B ␋ SYMBOL FOR VERTICAL TABULATION.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Is there a list of the unicode chars that accept tab command? I see I can just input \ and tab to see a list, but what I actually would like is to know why there are certain codes and not others.
I try \nabla and it does not work. I first thought it was only the Julia symbols, but Julia accepts \nabla https://pkg.julialang.org/docs/julia/THl1k/1.1.1/manual/unicode-input.html
See, even if I just insert the unicode, ipython does not like it. File “<ipython-input-8-7f603a77904d>”, line 1 𝛁 = 3 ^ SyntaxError: invalid character in identifier
@fredguth Looks like “Python 3 restricts variable names to unicode characters that represent characters in written languages” (Ref).