Questions tagged [sublimetext]

Sublime Text is a text and source code editor for Linux, OS X and Windows. PLEASE 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

Sublime Text is a cross-platform C++-based text and source code editor. The program was originally designed as a feature-rich extension of Vim.

First release: 18 January 2008
Stable Version: Sublime Text 4 (Build 4143) / 11 November 2022
Dev Builds: Build 4147 / 22 December 2022

Features

  • Minimap: a preview of the full source code
  • Ability to select multiple sections of code
  • Multi-panel editing
  • Bookmarks within files
  • Native support for 44 (version 3) or 27 (version 2) programming languages included, with additional available for download
  • Autosave
  • RegEx-based find and replace
  • Fully customizable syntax highlighting
  • Brace matching, autocomplete
  • Support for macros and Python-based plugins
  • Custom key bindings
  • In-editor code building
  • Snippets
  • Goto Anything(File Navigation)
  • Column Selection and multi-select editing
  • Plugin Support

Platform Support:

  • Linux
  • macOS (10.9 or later required for dev builds)
  • Windows (also as a portable version)

Version 3

Version 3 entered beta on 29 January 2013. At first available only for registered users who have purchased Sublime Text 2, on 28 June 2013 it became available to the general public. However, the very latest development builds still require a registration code.

Two of the main features that Sublime Text 3 adds include symbol indexing and pane management. Symbol Indexing allows Sublime Text to scan files and build an index to facilitate the features Goto Definition and Goto Symbol in Project. Pane Management allows users to move between panes via hotkeys.

Sublime Text 3 is very stable, as of 22 March 2016, about 80% of those using Package Control are running version 3 and Sublime Text 3 is the default download version on its website.

Related Tags

Source: Wikipedia

3417 questions
1
vote
1 answer

What is the purpose of plugin_host service in Sublime Text 3?

The plugin_host application in Sublime Text 3 is eating ram , what's its purpose?
yadav_gaurav
  • 15
  • 1
  • 6
1
vote
0 answers

getting 404 Not Found [IP: 91.189.95.85 80] error when trying to install/apt update on WSL ubuntu18.04 OS

followed below link to install sublime-text on WSL ubuntu18.04 image, https://tecadmin.net/install-sublime-text-editor-on-ubuntu/ but getting error on apt update: Hit:1 http://security.ubuntu.com/ubuntu bionic-security InRelease Err:2…
1
vote
1 answer

Regex to replace spaces in quoted strings with _ (Sublime)

I am trying to modify keys in my JSON file (around 60 MB) by removing spaces if there are any. I use Sublime Text Editor to load and edit large JSONs. Currently, I am using the following expression to find quoted strings with…
ak2492
  • 305
  • 1
  • 4
  • 14
1
vote
2 answers

How to specify the scope of a snippet between a PHP or a HTML file?

It seems that when examining the scope of a PHP file, whose extension is .php, and whose syntax is correctly recognised as PHP, Sublime will still report it as text.html.basic (among others). This makes my HTML snippet always execute in it. Since…
Digital Ninja
  • 3,415
  • 5
  • 26
  • 51
1
vote
1 answer

Can you make the cursor move smoothly when typing in sublime text?

Is there any setting or package in sublime text 3 that makes the cursor move smoothly when typing like in monkeytype.com That just makes me wanna type forever.
Dtomper
  • 79
  • 7
1
vote
1 answer

Changing the mouse button and modifier key used for column selection in Sublime Text

To select a column in Sublime Text (on Windows) you use Shift+Right Click. How can I change the mouse button and modifier key to Alt+Left Click so it is the same as Notepad++? I found a similar question/answer here on StackOverflow but it did not…
user12733526
1
vote
1 answer

What is the keyboard shortcut for the mouse right-click functionality on sublime text

I am using the keyboard and then I get to the point I want to open the menu little menu, so I had to open it using right-click on the mouse since I couldn't find the shortcut. What is the keyboard shortcut to do "right-click" and open the little…
ToTheMoon
  • 79
  • 6
1
vote
1 answer

Automatically convert indentation from 2 to 4 spaces in Sublime Text 3

There are a few topics about auto-conversion of the indentation in Sublime Text, but I didn't find the way to do it automatically. Many files I download have indentation of 2, which I hate, so I want to convert them to 4. What I do is: Select Tab…
Robo Robok
  • 21,132
  • 17
  • 68
  • 126
1
vote
2 answers

sublime automatically add line breaks and indents

Is there a way to automatically reformat javascript code with sublime? E.g. if I get code like this https://checkout.stripe.com/checkout.js How can I copy this into sublime and automatically make it readable?
carl
  • 4,216
  • 9
  • 55
  • 103
1
vote
1 answer

How to run an update on Autoprefixer's caniuse list

I am running Autoprefixer in Sublime Text 3, and am now getting this error when saving CSS files: Autoprefixer Error: Browserslist: caniuse-lite is outdated. Please run: npx browserslist@latest --update-db The problem I have is simple. I don't…
mtm
  • 63
  • 2
  • 10
1
vote
0 answers

Terminus custom theming issue

I'm using the package Terminus on Sublime Text 3, and wish o change my default theme. I can't seem to be able to do it. I go to Terminus Utilities: Select Theme and select one, nothing happens. I edited the settings file to use custom colours…
amzon-ex
  • 1,645
  • 1
  • 6
  • 28
1
vote
1 answer

How to select specific content between second and third comma using Regex in sublime text?

Hi everyone I'm trying to select the content in between the second and third comma using regex This is my content INSERT INTO table (column1, column2, column3) VALUES ('Alejandro', 'dislike', '', 20, 'otro nombre') INSERT INTO table (column1,…
Professor Zoom
  • 339
  • 1
  • 4
  • 13
1
vote
0 answers

How do i fix this missing dll error in sublime text

I tried up setting up sublime text for C and CPP. As a trial, I wrote a basic output program to test it out. But during compilation I got this error, "The code execution cannot proceed because libmpfr-6.dll was not found. Reinstalling the program…
1
vote
1 answer

Sublime Text 3 Macro to add quotes and a comma to every line?

Let's say I have a file open. Each line in the file is an ID number. One of the tasks I do frequently is to convert each line into a quoted ID number with a comma at the end of each line. Currently I do this using Find and Replace with…
Kevin
  • 175
  • 1
  • 9
1
vote
0 answers

Sublime text 3 giving error upon compilation

I have recently installed sublime text 3 on my pc and trying to run some c++ code on it , it is giving me the following error, could someone please help, thanks for your time. I have put my cpp code and the error appearing: #include…
1 2 3
99
100