-
Notifications
You must be signed in to change notification settings - Fork 2
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
Settings #14
Conversation
Nice :) Reviewing soon |
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.
Well once i cd to the src dir it works... odd... BTW the UI looks nice! |
@sumeshir26 i forgot that |
and thanks a lot btw! |
Np, I think the ui would look better if you remove the border around the frames, did u try that? |
i made the borders so you could differentiate between sidebar and settings page. feel free to change it but please dont completely remove it or find a way to make them differentiable |
Ok. do it how u feel is good |
@not-nef I added a font loading method which does not rely on |
Just wanted to ask you: what do you use to commit to github? I have always done it through the gh website. I assume you use git. But i dont know how to use it. Could you maybe take some time to explain to me how to use it to commit to a gh repo? I would really appreciate it! |
Hi guys, it's me. I am not officially back since my exams are coming(the first exams of the year), and I couldn't respond much since I had problems of my own, but hey, I am back to help whenever I can. Git, in its entirety, is quite simple. Sure, you have to set user config, but I have an ace up my sleeve for that. So, let's make a simple guide. Add/Stage filesWhenever you commit, you have to select the files you want to commit, ie. if you updated docs and are testing a file edit, you make sure that doesn't get staged(ready for committing) so that you can test peacefully without the pains of accusations(they do lead back to you). Git is a CLI, so we need to use commands. These are universal, so no changes will take place. $ # To stage particular file(s)
$ git add filename.ext filename2.ext # and so on
CommitSo, this is a bit easy. Committing is just taking a snapshot locally. We all know how to do it, so I'll just shoot. # Commit
$ git commit -m "Title message: following semantic commits is better" -m "Description"
# You can sign them(flag: -S), but that is of no use; any way you will learn it and possibly regret it too - failed for me :/ PushThis is fairly easy. This depends upon your file changes, so it is relative to the bits changed.
My ace.GitHub CLI. It is a smart thing since it is an extension of Git. Once you install and type Once you log in, you can clone repos like so:
Please amend the user-name and repo-name values w/ your own WITHOUT the square brackets. |
PS: Commit hashes are so random, it is SO rare to get the same hash; plus it's useless since that is a conflict. |
PPPS: It doesn't work on Linux :/ |
I think @sumeshir26 uses the VS Code's Source Control panel; I am classic via CLI, it gives me lot of control. Perhaps I'll make a blog on this, when the time is right. I hope the main part helps. Use GitHub CLI to clone; it is efficient. |
@not-nef I mostly use VsCode's github intigration. Just click t icon on t sidebar |
Thanks!! |
First commit with git! finally |
programming is hard |
Courier New turned out to not be the default font |
Gonna add font size, mica and hotkey setting tomorrow! |
@not-nef I added the font size option, do you think it is good? (Also, you should reallay get rid of |
i was about to do commit that ._. |
btw your method of getting a list for the fonts does not have all fonts it seems |
also i have implemented it a little different |
this is a huge pr |
What fonts are not seen by you? |
Helvetica eg |
Hmm I see Helvetica ... |
do you see it in the dropdown? |
I think we are ready! |
I think I've missed lots of things here 🥲, just checked it out, looks great tbh |
Thanks! :D |
I am inviting everyone to work with me on this.