Questions tagged [sublimetext4]

DO NOT USE THIS TAG UNLESS YOUR QUESTION IS SPECIFICALLY ABOUT SUBLIME TEXT ITSELF. Do not tag your IDE or source code editor in questions about unrelated topics. Sublime Text 4 is the latest version of a multi-language, multi-platform code editor, developed by Jon Skinner and SublimeHQ. It is very fast, highly extensible and customizable, and has a Python API to allow plugins for augmented functionality.

Overview

Sublime Text 4 is the latest version of a multi-language, multi-platform code editor, developed by Jon Skinner and SublimeHQ. It is very fast, highly extensible and customizable, and has a Python API to allow plugins for augmented functionality.

New Features

  • Tab multi-select
  • Native support for Apple Silicon and Linux on ARM64 processors
  • Refreshed UI
  • Context-aware autocomplete
  • , and support
  • Improved syntax definitions
  • GPU rendering
  • Dual APIs, supporting (default) and . The API has been extended and improved considerably.
  • Fully compatible with
  • Safe mode (--safe-mode command line switch) to simulate a fresh install for troubleshooting
  • Improved input handling, extended key bindings
  • Added File → Print, which prints through a web browser. Edit → Copy as HTML available as well.

The full changelog is available on the downloads page.

Resources

119 questions
0
votes
0 answers

searching for sublime_text 4 text short key (: (that maybe not exist)

I just want to find some short key for sublime text 4 that maybe not even exist (I tried to find it on google so if he exist sry my bad X:)... question: sometimes I write program that will be easier to test (if it working correctly) using comments,…
MP3
  • 1
  • 1
0
votes
0 answers

How to color everyother line in sublime text

I'm currently trying to make a custom color scheme for sublime text for various uses. One of the things I really would like to have is an alternating colors for every other line in a list. I want something that would look like : 1. Item 1 2. Item…
Panthers27
  • 17
  • 3
0
votes
0 answers

Troubles to Install REPL in Sublime 3 and 4

As you can see on the screen I am having trouble installing the REPL. I have checked lot of questions but I could not find the same situation. My problem is at the first moment because I cannot even install it. I´d tried to uninstall and install it…
0
votes
1 answer

Override next character when the same is typed in Sublime text 4

Is there a way how to set in key-binding file new rule, that when I type character which is already right after the cursor, it will be overridden. To clarify what I would like to have: if (ABC === XYZ) { // when I place cursor right after "XYZ" and…
sylar32
  • 197
  • 3
  • 16
0
votes
1 answer

How can I add custom/dynamic/magic PHP function definitions to Sublime Text?

I know Sublime Text isn't an IDE, but that's what I like about it. Still, it's nice to have certain IDE-esque functionality from time to time. Mostly for use with Laravel, I'd like the ability for Sublime to find definitions of symbols that aren't…
Joel Mellon
  • 3,672
  • 1
  • 26
  • 25
0
votes
1 answer

How to stop Sublime Text from showing the build time?

When I build a program in Sublime Text 4, it will always show [Finished in XXXms] at the end of the output(image below). How can I stop that from happening? It's just a little bothersome since I include a timer in all of my small programs that I…
user17034852
0
votes
2 answers

How can I get the same CTRL+W behaviour from Sublime Text

In the past, ctrl+w used to close a single tab in Sublime Text (3), and if there were no tabs left open, it would close the text editor. How can I achieve the same behaviour in the updated Sublime Text? ST 4 EDIT: The setting I was looking for is…
0
votes
0 answers

global gitconfig file unreachable in Sublime Text

I'm learning Git and currently trying to configure it on WSL(v2) - Ubuntu 20.04 on Windows 10. When I execute commands like git config --global user.name "XX YYY" It works fine. I set my code editor to Sublime Text (v4) which is NOT installed on…
amzon-ex
  • 1,645
  • 1
  • 6
  • 28
0
votes
1 answer

How to correct Sublime Text 4 opening any file half-line scrolled

My Sublime Text 4 is opening files with their top lines going scrolled beyond the tab bar and half shown (attaching the screenshot). You'll see that the top line of the css file (which is html element) is half scrolled. This is happening to all the…
Avinash
  • 46
  • 6
0
votes
0 answers

Sublime Text 4 autocomplete when word includes period/dot "."

In R code "." can be part of a variable name and at least in my and others' experience period is used as a separator for long variable names. In ST3 autocomplete worked fine when I had names such as "first.dataframe". So when I typed "first",…
Herman Toothrot
  • 1,463
  • 3
  • 23
  • 53
0
votes
1 answer

hello_world.py not found when using Python 3.9.7 and Sublime build 4113 on Windows 10.0.22449 build 22449

I'm attempting to build my hello_world.py code according to the instructions in Python Crash Course 2nd edition by Eric Matthes. The process seems clear enough, so while I'm trying to follow the directions precisely, I'm obviously missing something…
0
votes
1 answer

How to disable underline variables in SublimeText?

When the cursor is on it which option is responsible to make underline such variables?
italant
  • 187
  • 1
  • 12
0
votes
0 answers

sublime text 4: go to function definition not working when folder structure is different

I am using sublime text 4 (4113 build) I have a python project some basic folder structure of django project project_folder -- venv (python virtual env) -- src ----- test ---------models.py Now in my models.py i have from django.contrib.auth.models…
Santhosh
  • 9,965
  • 20
  • 103
  • 243
0
votes
0 answers

Problem displaying accented characters in Sublime Text

When I type accented characters in the editor (Sublime Text build 4113 on Windows 10) it looks ok like this: I saved it with utf-8 encoding and closed it, but when the file is opened again the characters can't be displayed correctly: The file can…
0
votes
1 answer

How to hide options menu when cursor is inside single or double quotes in sublimetext

I am trying to use the autofilename plugin, but for some reason it replaces me or incorrectly corrects the file path, I think I know that it is because of the options that automatically appear as references when the cursor is inside single or double…
user16098906