-
-
Notifications
You must be signed in to change notification settings - Fork 131
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
Add arrow glyphs #151 #252
Conversation
Thanks for submitting your first pull request! You are awesome! 🤗 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice, thank you! I'll make a release with this later this week.
if (parts.arrowLeft) { | ||
mods += '\u2190 '; | ||
} | ||
if (parts.arrowUp) { | ||
mods += '\u2191 '; | ||
} | ||
if (parts.arrowRight) { | ||
mods += '\u2192 '; | ||
} | ||
if (parts.arrowDown) { | ||
mods += '\u2193 '; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was only added to the Mac condition, this means that as-is the arrows are not displayed on other operating systems at all. I will fix that.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See 526b143.
I added some more context and thoughts at #151 (comment), since that seems like the best place to consolidate the conversation across #151, #252, #255, and #256. |
Hi! This is my first time opening a pull request for Lumino. I'm currently writing a Jupyterlab Extension for the company I work at and I'm loving the Jupyterlab ecosystem.
I think the majority of my changes are self explanatory. Here are a few thoughts: