-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Profile.print() throws exception if function name has Greek characters #5769
Comments
cc:@timholy |
@carlobaldassi, your second patch looks good to me, feel free to merge. |
Ah, saw it was a PR. Thanks! |
Thanks! I've gotten hooked on using Greek symbols where they are mathematical tradition. |
How do you write the delta symbol in the method? |
I've been using Vim as my editor on Linux. It has a digraph feature. For exampe, typing ctrl-K D* produces an upper case delta. What I haven't figured out yet is how to get Vim on Windows to do likewise. |
I kind of suspect that this is a bit of a chicken and egg problem: programmers won't start using Unicode identifiers until it's easier to enter them in editors but editors don't have any real reason to make it easier to enter Unicode until there's demand for it. Maybe by providing good support for Unicode in programs, Julia is nudging the balance towards a future where it's both easy and common to use Unicode when programming. |
Oh wow, that's cool. How do you call the method from repl then? |
Sorry for this being unrelated to the issue at hand. I can get repl to recognize the file where julia> include("delta.jl")
Δ (generic function with 1 method) But how do you call this method from repl? julia> '\u0394'(2)
ERROR: type: apply: expected Function, got Char |
Yeah, that won't work, I'm afraid. I've mostly used cut-and-paste for this sort of thing. Once @loladiro's pure Julia REPL gets merged, I'd like to take a crack at fancy zsh-style identifier tab completion that would let you cycle through the options with tab and arrow keys. That way you could just tab-complete names with Unicode in them without having to retype them. |
Yeah, this will be a very cool add. |
cut and paste works btw, which is a good start |
On Mac, you can use Ctrl+Command+Space to open up a special character viewer, which is quite convenient. |
I really love to be able to do this julia> Σ(x) = cumsum(x)
Σ (generic function with 1 method)
julia> Σ([10:12])
3-element Array{Int64,1}:
10
21
33 |
@jiahao thanks for the issue links |
If there are any emacs users:
will let you type any of these: http://en.wikibooks.org/wiki/LaTeX/Mathematics#List_of_Mathematical_Symbols (I think @JeffBezanson also mentioned this previously.) |
On Linux: I just use a bunch of extra custom definitions in .XCompose. This way, In case anyone wants to do the same, it's a matter of:
|
The problem for Vim on Windows is that the default font was missing Greek and (I'm not sure) the default file encoding might have been wrong. Here is my _gvimrc that fixed the problem.
|
Functions with Greek letters in their name cause Profile.print() to throw an exception.
The text was updated successfully, but these errors were encountered: