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
2 answers

Sublime Text's Terminus is not displaying Oh My Zsh icons

I get a generic ? where the icons should be. A similar issue but for Visual Studio Code is documented here: https://dev.to/avantar/how-to-fix-zsh-icons-in-visual-studio-code-terminal-38bb Needless to say, I haven't been able to find an equivalent…
dcarrot
  • 56
  • 5
1
vote
0 answers

Sublime text doesn't recognize the calc() as function

I have the following css code: div { --height: 1.5em; line-height: var(--height); background-image: repeating-linear-gradient(transparent 0 var(--height), green var(--height) calc(var(--height) * 2)); }
Stack Overflow is a question and…
James
  • 2,732
  • 2
  • 5
  • 28
1
vote
1 answer

Keybinding alt+up won't work in Sublime Text 3

I want to copy the Move Line Up/Down keyboard shortcut of VS Code to Sublime Text 3 which uses Ctrl+Up/Ctrl+Down key bindings, so I placed the following in the User-defined key-bindings file: [ { "keys": ["alt+up"], "command":…
marshblocker
  • 83
  • 1
  • 6
1
vote
1 answer