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
1 answer

Regular expression to Find all files that contain "string1" but do not contain "string2"

I have looked at several posts including this question which is asking essentially the same thing, but was wrongly closed (IMO) as the close rational cites a question. asking about sub-strings within a string i.e. strings that contain one…
ryyker
  • 22,849
  • 3
  • 43
  • 87
0
votes
1 answer

Windows, Python, VENV, and Sublime Text Build systems: Path Error When Activating VENV

Okay, I've looked through a bunch of python venv with sublime text questions, and I'm pretty sure this issue is due to the specifics of venv on windows. I'm on Windows, using Python 3.10, and the virtualenv package to manage my virtual…
klreeher
  • 1,391
  • 2
  • 15
  • 27
0
votes
1 answer

Sublime Text 4: Support for Django autocompletion

I'm looking for a way to implement Django's autocompletion and hints. I'm aware that it's possible in Sublime Text 3. I'm looking at how to do it in the Sublime Text 4. For example, I'm unable to use Djanerio in Sublime package browser going:…
Paweł Pedryc
  • 368
  • 2
  • 5
  • 19
0
votes
0 answers

ImportError on Sublime Text 4 with conda

I am using anaconda with sublime text 4 on Win11. Every thing works in the anaconda prompt, but in ST4, importing modules such as Numpy, Scipy will raise: D:\Anaconda3\lib\site-packages\numpy\__init__.py:148: UserWarning: mkl-service package failed…
royzys
  • 1
0
votes
1 answer

Deactivate menu opening when pressing Alt in sublime

I use alt + ijkl as arrow keys to move my cursor when I am coding. However in Sublime text when you press alt, it opens the upper left menu, and it sometimes messes up my shortcuts. Is there any way to deactivate that ? Haven't found it in…
Frotaur
  • 113
  • 8
0
votes
1 answer

SublimeText4: How to disable LSP-typescript for specific directories?

I have LSP and LSP-typescript packages installed. I also have directory with typescript code snippets (read: gists), which i sometimes open with sublime. When i interact with such a snippet, i usually get some typecript syntax warnings, coming from…
user124
  • 1,632
  • 1
  • 11
  • 11
0
votes
1 answer

In sublime text 4, how to hide embeded code's symbols in the `go to symbol` panel when in a markdown file?

In sublime text 4, now go to symbol will show mixed symbols. For example. if I have a markdown file, and inside the file there is some go snippet code, go to symbol will show both markdown source’s symbol and go source’s symbol mixed, and the mixed…
unifreak
  • 773
  • 6
  • 17
0
votes
0 answers

Can I use key bindings in Sublime Text to open remote files?

Every time I start a new programming session I have to open many “remote” files. I was hoping to find a way to use key bindings to open those files. However, if this is possible I can't seem to find the proper way to do so. Current I have a…
Bartender1382
  • 195
  • 1
  • 10
0
votes
0 answers

(WinError 2) The system cannot find the file specified on Sublime Text

Trying to run simple Python code on Sublime Text editor but getting the following error: [WinError 2] The system cannot find the file specified [cmd: ['py', '-u', 'C:\\Users\\Administartor\\Desktop\\Python projects\\test.py']] [dir:…
Alex
  • 79
  • 1
  • 10
0
votes
1 answer

Sublime Text 4 with conda env

I'd like to run python code I'm editing in Sublime Text 4 in a specific conda env. Questions Virtualenvs in Sublime Text 4 and use conda environment in sublime text 3 asked similar questions. The starting configuration Olgierd Wiśniewski had would…
Steve Maguire
  • 393
  • 1
  • 4
  • 11
0
votes
1 answer

sublime text 4 isn't printing the user input while running the python code

I have recently installed sublime text 4 on my system. While running my python code on ST 4, I'm encountering a strange issue which I'm unable to resolve. The following code is suppose to take input from use, Here First name and the second name.…
0
votes
0 answers

getting "Permission denied" while reading from file using custom C++ build in sublime text 4

I use sublime text 4 on macOS. I have a custom C++ build to read from a input.txt file in current file path. but when I run my custom build, it shows bash: /Users/jigyansu_nanda/Downloads/CP/input.txt: Permission denied My custom C++ sublime-build…
0
votes
0 answers

Is there a way to pass a parameter to sublime text3 insert snippet using tab trigger?

Good day.. There is this thing I would like to do in snippet (Sublime Text 3), something like this. CHOICE+VARIABLE so that when I trigger something like CHOICE5 it would create a content like this. ...YOU TRIGGERED CHOICE…
0
votes
0 answers

(Sublime text) Undefined symbols for architecture arm64

I am new to C++. I have a problem with including the header. I'm trying to compile my a.cpp file and get this error. I'm using Sublime Text as a text editor. Can anyone help me with this problem? Thank you in advance! Undefined symbols for…
tobias
  • 1
  • 1
0
votes
1 answer

sublime text 4 customize prediction

Sublime text 3 had a dropdown menu that suggested previously used variables, which I really liked. While sublime text 4 still does that it also shows additional code snippets, which I find very annoying. Hence, is there a way to only show used…
Another_coder
  • 728
  • 1
  • 9
  • 23