[QT19] The Top 10 questions YOU have about Sublime Text 4!

  Рет қаралды 1,634

OdatNurd - Sublime Text Tutorials

OdatNurd - Sublime Text Tutorials

Күн бұрын

Пікірлер: 23
@benzflynn
@benzflynn 3 жыл бұрын
What I saw first (and with puzzled delight) is the speed with which v4 opens. Doesn't seem to matter how many tabs are there, they're all open in one flash. Don't know what you boys did but you sure got some speed out of it. P.S. Great idea to save power by stopping blinking cursor.
@sohail_ahmad
@sohail_ahmad 3 жыл бұрын
Thank you Sir for making such type of helpful video. I am a big FAN of Sublime Text. I am a Youngest Junior Web Developer. I belongs to Pakistan. Thank you... for solving my problems.
@OdatNurd
@OdatNurd 3 жыл бұрын
Thanks so much! Glad I could help! :D
@ashwinshenoy6360
@ashwinshenoy6360 3 жыл бұрын
Congratulations on the 2K+ subscribers !
@OdatNurd
@OdatNurd 3 жыл бұрын
Thanks! It arrived extremely fast 😁
@dasayan05
@dasayan05 3 жыл бұрын
I wish we could congratulate @OdatNurd for even more subscribers. This channel is seriously underrated. Only 2K ?
@OdatNurd
@OdatNurd 3 жыл бұрын
@@dasayan05 thank you for the kind words!
@dwayne6402
@dwayne6402 3 жыл бұрын
Its worth the cost of subscription. This is a real good piece of software. I don't mind supporting the developers of Sublime Text.
@OdatNurd
@OdatNurd 3 жыл бұрын
I totally agree! There are still a couple of small growing pains, but it's just getting better and better.
@dwayne6402
@dwayne6402 3 жыл бұрын
@@OdatNurd And we are supporting a small business not a big conglomerate. We should really support the little guys so we ensure we continue have choice.
@sohail_ahmad
@sohail_ahmad 3 жыл бұрын
Thank you Sir for your feedback. The first thing is that i fan of sublime but when i install VS Code i like the dark Menu Bar and ST3 there is no option to change Menu Bar to Dark Color. This problem is solve in ST4. But i have mostly like ST3 "Monokai Color Scheme" there have some changes in CSS foreground "text color" etc. Dear Sir please add ST3 Default "Monokai Color Scheme" i have a headache to change one by one "Customization settings".
@OdatNurd
@OdatNurd 3 жыл бұрын
The color scheme is still the same; what you're seeing here is that the syntaxes are now more refined in how they provide information to the color scheme, and those refinements are causing different color scheme rules to be used. As such the only way to get colors to look as they did is to adjust them as seen in this video. I'm not sure offhand how many such changes there might be though, since it depends on the type of files that you're editing.
@garchu3214
@garchu3214 3 жыл бұрын
@8:02 ...i need my both menu and title bar to be in same color as shown in the video....how can i get that on windows? Edit: got help from discord community..thax
@OdatNurd
@OdatNurd 3 жыл бұрын
On windows you can go into settings and set your own custom color to be used for title bars and other things; you can dial that in to match the menu colors you see in dark mode or even make it slightly different for a bit of visual interest. I do that locally on my Windows machine as well, which I beleive you see in this video when I turn off the themed title bar.
@ivanlegranbizarro8102
@ivanlegranbizarro8102 3 жыл бұрын
I'm really enjoying Sublime Text 4. I think things like autocomplete have improved a lot. Right now I can write code in Python without the need to install any plugin. I just have a question, why isn't Sublime able to autocomplete suggestions to import some libraries? And why does Sublime offer suggestions for some imported library methods and not others? For example, if I try to write a REST API with the Django Rest Framework, Sublime gives me suggestions for some generic Views, but others, it's like they don't exist for it ... Sorry I'm a rookie xD
@OdatNurd
@OdatNurd 3 жыл бұрын
The completions that Sublime provides are a combination of bundled snippets and completions and symbols that it finds in the files that you're working with. So it can't provide completions for libraries unless the source for those libraries are in your project. For the other issue, you may be experiencing something that is currently being looked at, which is that the completion system tries to prioritize completions based on how likely it thinks they are, and if something is used infrequently or not at all it's priority is so low that it never appears. The devs are currently looking at that.
@SamarthKansal
@SamarthKansal 3 жыл бұрын
Hey Mr.Odatnerd ,I wanted to give input to my python programs and so I wanted to create a build system.i used the below code but I ran into the following error.Do help me and yeah I also have mingw installed so tell me if that's the issue. Thank you{ "cmd": ["python3", "-i", "-u", "$file"], "file_regex": "^[ ]File \"(...?)\", line ([0-9]*)", "selector": "source.python" } this is the error that I am getting: [WinError 2] The system cannot find the file specified [cmd: ['python3', '-i', '-u', 'C:\\Users\\samar\\Desktop\\Python\\checking.py']] [dir: C:\Users\samar\Desktop\Python] [path: C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Users\samar\AppData\Local\Programs\Python\Python38-32\Scripts\;C:\Users\samar\AppData\Local\Programs\Python\Python38-32\;C:\Users\samar\AppData\Local\Microsoft\WindowsApps;C:\MinGW\bin;] [Finished]
@OdatNurd
@OdatNurd 2 жыл бұрын
Wow sorry, this just showed up today but the notification seems to be from 5 months ago. Generally speaking an error like that indicates that Windows can't find the program you asked it to run. In your case that is likely because it's only on Linux/MacOS that Python 3 is named python3 ; it's python on windows regardless of the version. Note however that this build won't work because Sublime build systems don't allow input by default; your program would just hang. If you want a build system like that in Sublime, you want to use Terminus: kzbin.info/www/bejne/m6Wse4CMftuJnck
@SamarthKansal
@SamarthKansal 2 жыл бұрын
@@OdatNurd Thanks I will try doing that first. Will contact you if I run into any more troubles😁
@RyanGoslingVerified
@RyanGoslingVerified 3 жыл бұрын
Hi, here's the dumbest question: How do I return the default gray color of the «close tab» button? I mean, it was gray, and now it is green. Maybe for someone this is a cool solution, but not for me. I like minimalism :)
@OdatNurd
@OdatNurd 3 жыл бұрын
I assume you're using a newer build of ST4 that makes tabs for new files green and tabs with deleted files red? If you use `UI: Customize Theme` you'll get a window with the theme rules on the left and your user file on the right. Search the left for a rule with a "class" of "tab_close_button" and an "attributes" of "added". Copy that right to the rules section in the file on the right and replace the layer tint color of 'var(vcs_added)' with 'color(white a(50%))' instead (or black, depending on the shade of your color scheme). You can do the same thing for the rule below it with the attribute of "deleted". As soon as you save the file, you should see the change take effect.
@RyanGoslingVerified
@RyanGoslingVerified 3 жыл бұрын
@@OdatNurd Thanks for detailed response! Now it looks cooler and I'm satisfied. :)
@OdatNurd
@OdatNurd 3 жыл бұрын
@@RyanGoslingVerified Awesome!
[QT20] Three QUICK Fixes for Python problems in Sublime Text 4!
7:36
OdatNurd - Sublime Text Tutorials
Рет қаралды 6 М.
[PT06] How to quickly synchronize your Sublime config across computers
9:08
OdatNurd - Sublime Text Tutorials
Рет қаралды 3,5 М.
Sigma baby, you've conquered soap! 😲😮‍💨 LeoNata family #shorts
00:37
😜 #aminkavitaminka #aminokka #аминкавитаминка
00:14
Аминка Витаминка
Рет қаралды 1,9 МЛН
[QA03] How the heck do you customize colors in Sublime Text?
13:34
OdatNurd - Sublime Text Tutorials
Рет қаралды 4,9 М.
[BU03] Three easy ways to get Sublime to automatically select your custom build
9:21
OdatNurd - Sublime Text Tutorials
Рет қаралды 2,2 М.
[MG06] Execute multiple commands with Sublime's new chain command
5:27
OdatNurd - Sublime Text Tutorials
Рет қаралды 1 М.
[BU06] Adding platform specific tools to your builds in Sublime Text
6:19
OdatNurd - Sublime Text Tutorials
Рет қаралды 528
[QT23] Quickly customize your Terminus terminals with any settings you like
4:24
OdatNurd - Sublime Text Tutorials
Рет қаралды 2,7 М.
Do you know the must-have packages for Sublime Text?
3:32
OdatNurd - Sublime Text Tutorials
Рет қаралды 2,3 М.
[BU02] How to easily create your first Sublime Text build system
9:47
OdatNurd - Sublime Text Tutorials
Рет қаралды 11 М.
[PPR08] How to painlessly install and update packages using Package Control
10:52
OdatNurd - Sublime Text Tutorials
Рет қаралды 5 М.
[BU04] Making builds reusable with build file variables
9:00
OdatNurd - Sublime Text Tutorials
Рет қаралды 910
[QA01] Can you execute multiple Sublime builds in a chain?
8:02
OdatNurd - Sublime Text Tutorials
Рет қаралды 529