Questions tagged [sublime-text-plugin]

Sublime Text is a multi-language, multi-platform code editor with a Python-based plugin API. Use this tag for questions relating to Sublime Text plugin programming.

Sublime Text is a multi-language, multi-platform code editor with a Python-based plugin API. Use this tag for questions relating to Sublime Text plugin programming.

768 questions
5
votes
4 answers

How Can I install Mac Classic theme in sublime latest version?

I am using sublime text editor, and my favorite theme is Mac Classic Theme . But When I updated the editor , con't found the theme. How Can I install Mac Classic Theme In sublime editor ?
Rubel Hossain
  • 2,503
  • 2
  • 22
  • 23
5
votes
4 answers

How to enable auto-align in Sublime Text 3?

I want to auto-align my code to make it easier to read, in a click. I am working on Sublime Text 3 and want to know about a method through which I can enable auto-indent of the code in just a click.
Utkarsh
  • 502
  • 1
  • 5
  • 22
5
votes
0 answers

Can I get popups on mouseover for inline documentation in Sublime Text?

I'm used to Android Studio, which has these awesome popups when you hover your cursor over a function (or anything else), which shows you a description, parameters, etc.. Now I'm using Sublime Text 3 for Lua programming, and I would like to have a…
Timmiej93
  • 1,328
  • 1
  • 16
  • 35
5
votes
1 answer

Auto - Import for .ts Components in Sublime Text 3

I'm working on an AngularJS beginner Tutorial and the mentor is working with another IDE. I prefer to use SublimeText3 because I am familiar with it. When I am declaring a new component in my app.module.ts (Marked with [1] in the code), then the…
5
votes
1 answer

How to use sublime 3 jinja2 highlighter

I have a problem with jinja2 highlighter in sublime 3.All the files associated with .html extensions don't recognize jinja templates blocks..I searched the web but the only solution I found is to make a .jinja.html custom extension..anyone got any…
5
votes
1 answer

sublime text horizontal scroll keyboard

Is there a keyboard shortcut to scroll horizontally? I know to scroll vertically you can do or , I was hoping there would be something similar to scroll horizontally, but I've not found anything.
mtveezy
  • 661
  • 3
  • 10
  • 21
5
votes
2 answers

Sublime Text: run code in a new file without saving to disk and the default language setting for a new file

I am using Sublime Text Editor for Python development. If I create a new file by Ctrl + N, the default language setting for this file is Plain Text, so how to change the default language setting for the new file to be Python ? Another question :If I…
iMath
  • 2,326
  • 2
  • 43
  • 75
5
votes
1 answer

Where is the Python interpreter that Sublime Text uses to run plugins?

I'm trying to locate the Python interpreter that Sublime Text uses to run plugins. Thinking that sys.executable would give me an absolute path to a Python interpreter, I tried creating this plugin: from sys import version_info, executable from…
Ben Cook
  • 1,654
  • 2
  • 18
  • 32
5
votes
2 answers

Sublime Text Sorting with Respect to Indentation

I'm looking for a Sublime Text plugin or any kind of program that can sort alphabetically but respect the indentation. For example, beatsByUserPath: (userId) -> "/api/beats/by_user/#{userId}" sendMassMessagePath: -> …
Overload119
  • 5,124
  • 5
  • 29
  • 34
5
votes
2 answers

Sublime Text 3 Default File Type on new file

I was looking around and the questions and answers did not seem to match what I am looking for (Sublime Text 3). Anytime I open a new file it defaults to a plain text file. I mostly work with PHP files so I was wondering if there is a setting that…
5
votes
2 answers

SublimeText 3 - Package Control: Removed directory for orphaned package ColdFusion

I am running SublimeText 3 (build 3083). I follow the manual install directions for the ColdFusion plugin as described here (https://github.com/SublimeText/ColdFusion): Download Manually Download the files using the GitHub .zip download…
gfrobenius
  • 3,987
  • 8
  • 34
  • 66
5
votes
1 answer

Insert text into view in sublime 3 api

I have 4 view in my sublime now. And I want to insert some text to one view. I am trying like this. but no luck. getAllViews = self.window.views() jobView = getAllViews[1] jobEdit = jobView.begin_edit() jobView.insert(jobEdit, 0,…
Achayan
  • 5,720
  • 2
  • 39
  • 61
5
votes
1 answer

Why is Sublime Package Control not working?

I have already installed Sublime Text 2, and following this guide, I installed the Package Control; once that I used the Ctrl + Shift + P shortcut in Sublime, and when I type install, the option is not there for installing. I don't want to install…
Vercryger
  • 620
  • 7
  • 17
5
votes
2 answers

Outlining functionality for sublimetext 3

Sublime text is so nice that plenty of people use it for actual writing as well as coding. But many actual writers want outline view functionality. I am looking for a sublime text package which offers keyboard shortcuts for markdown files which…
Steve Powell
  • 1,646
  • 16
  • 26
5
votes
1 answer

PHP Syntax Check in Sublime Text Editor

In Gedit, I can add an External Tool of "php -l" on the current document, and if I have PHP command line installed, it will syntax check the document. Is there a way to do this with Sublime Text Editor? (Note, I have a Mac and it has PHP CLI…
Volomike
  • 23,743
  • 21
  • 113
  • 209