Sublime Text 3 (Dev)

Although you can run Git commands from within Sublime Text, why check the differences in a file from the last commit by running a separate command when you can view it in real time? Nov 25, 2014  A quick walkthrough on setting up a development environment using Sublime Text 3. The packages installed in this video are: Dayle Rees Colorschemes Predawn BracketHighlighter Sidebar Enhancements. Mar 28, 2018 DA UI is a set of beautiful, clean interface and syntax themes for Sublime Text 3. The DA UI plugin also has custom icon support with A File Icon. View DA UI plugin. Theme - Spacegray. Theme - Spacegray is a set of custom UI themes for Sublime Text 2 and 3 which are very minimal and clean. Spacegray also comes with Base16 color schemes. Oct 01, 2019 Sublime Text 3.2.2 Dev is a feature-rich text editor for code and HTML that is loaded with the selection of editing commands, multiple selections, regular expression searches and replace, line formatting, paragraph reformatting, intending or un-intending, the line joining, and preserve case on replace. It has built tool integration ability that.

Download Mac Sublime Text 3.2.2 Build 3211 Dev Full version – FREE!

Sublime Text is a subtle text editor that allows customers to code, markup, and prose. With the program, customers can apply the slick user interface, uncommon features and wonderful performance. With its speed and various packed text and modern development editor, customers will find no trouble in coding regularly.

Homepage:https://www.sublimetext.com

  • CAN NOT DOWNLOAD: Some probably encounter the following error: This site can’t be reached ..sundryfiles.com’s server IP address could not be found. DNS_PROBE_FINISHED_NXDOMAIN. In this case, please use Google DNS and you will get rid of trouble.
  • If downloaded file can not be extracted (file corrupted..), please make sure you have downloaded the file completely and don't use Winzip, it sucks! We would recommend using The Unarchiver.
  • By reason, the App does not work and can not be opened. Mostly, just Disable the Gatekeeper, and you get rid of troubles.

by Real Pythonbasicstools

Sublime Text 3 (ST3) is a lightweight, cross-platform code editor known for its speed, ease of use, and strong community support. It’s an incredible editor right out of the box, but the real power comes from the ability to enhance its functionality using Package Control and creating custom settings.

In this article, we’ll look at how to setup Sublime Text for full stack Python development (from front to back), enhance the basic functionality with custom themes and packages, and use many of the commands, features, and keyword shortcuts that make ST3 so powerful.

Note: This tutorial assumes you’re using a Mac and are comfortable with the terminal. If you’re using Windows or Linux, many of the commands will vary, but you should be able to use Google to find the answers quickly given the info in this tutorial.

Before we start, let’s address what I mean exactly by “full stack.”

In today’s world of HTML5 and mobile development, JavaScript is literally everywhere. EVERYWHERE. Python coupled with a framework such as Django or Flask is not enough. To really develop a website from end-to-end, you must be familiar with JavaScript (and the various JavaScript frameworks), REST APIs, responsive design, and of course HTML and CSS, and so on.

Let’s face it: as a programmer, you are like any other craftsman. If you want to be the best you can be, then you need your tools to be sharp. Your development environment must be set up for full stack development—which is exactly what we are going to do right now.

Free Bonus:5 Sublime Text Tweaks to Boost Your Python Productivity, a free course that shows you how to optimize your Python development setup.

Features

Let’s start by looking at a few of the default features of Sublime Text 3:

Alfred proposes simple yet efficient solutions for finding data locally or online, for accessing files or apps, or to automate repetitive actions. The applications comes with basic capabilities that can be easily extended by buying and installing the Alfred Powerpack. Alfred Powepack 2.8.4 (Mac OS X) 6 MB The Powerpack is a set of incredibly powerful features, built on top of the robust core Alfred application. Deeply flexible and integrated wit. Alfred Powerpack The Powerpack is a set of incredibly powerful features, built on top of the robust core Alfred application. Deeply flexible and integrated with macOS, use it to customise your Mac and make you more productive than ever! Alfred powerpack 2.8.4. Alfred Powerpack 2.8.4 Alfred is an award-winning productivity application for OS X. Alfred saves you time when you search for files online or on your Mac. Be more productive with hotkeys, keywords, and file actions at your fingertips. Loads of app-launching, file-searching goodness - free for you to download and use with no strings attached.

  1. Split Layouts allow you to arrange your files in various split screens. This is useful when you are doing test driven development (Python code on one screen, test scripts on another) or working on the front end (HTML on one screen, CSS and/or JavaScript on another).

  2. Vintage Mode provides you with vi commands for use within ST3.

  3. Chrome-like Tabs make navigating and editing several files much simpler.
  4. Automatic loading of the last session re-opens all files and folders you had open when you closed the editor the last time. I leave ST3 open all the time, with various projects open, so if I reset the computer, it opens the files and folders right back up.
  5. Code Snippets increase your productivity by giving you the ability to create common pieces of code with a single keyword. There are a number of default snippets. To try one for yourself, open a new file, type in lorem, and press Tab. You should get a paragraph of lorem ipsum text. Also, if you type defs and then press Tab in a Python file, it will setup a generic function.

Note: You can also create your own snippets: Tools > New Snippet. Refer to the documentation for help, and also check out some of my snippets here.

Customizing Sublime Text 3

After you download ST3, you can customize it.

Install the subl command line tool

Just Like TextMate has the mate command, Sublime Text has a command line tool called subl that allows you to open one file, or an entire directory of files and folders, from the terminal.

Sublime Text 3 Dev Build 3190

To enable this command, create a symbolic link to the subl binary:

Ensure that the link works by opening Sublime:

If that didn’t work, you probably need to add /bin to your path:

Then repeat step one.

Note: If you are still having trouble, check out this article for help. You can also read up on creating the symbolic links in Windows and Linux.

Now you can open a file or directory using the following commands:

If there are spaces in the path, you must surround the entire path in double quotes:

To view all the commands, open up the help file:

Install Package Control

To begin taking advantage of the various packages for extending Sublime’s functionality, you need to manually install the package manager called Package Control. Once you have it installed, you can use it to install, remove, and upgrade all other ST3 packages.

  1. To install, copy the Python code for Sublime Text 3 found here. Click View > Show Console to open the ST3 console. Paste the code into the console. Press Enter. Reboot ST3.
  2. You can now install packages by using the keyboard shortcut Cmd+Shift+P. Start typing install until Package Control: Install Package appears. Press Enter and search for available packages.

Here are some other relevant commands:

  • List Packages shows all your installed packages.
  • Remove Package removes a specific package.
  • Upgrade Package upgrades a specific package.
  • Upgrade/Overwrite All Packages upgrades all your installed packages.

Check out the official documentation to view more commands.

Create a Custom Settings File

You can fully configure Sublime Text using JSON-based settings files, so it’s easy to transfer or synchronize your customized settings to another system. First, we need to create our customized settings. It’s best to create a base file for all environments as well as language-specific settings files.

To set up a base file, click Sublime Text > Preferences > Settings - User. Add an empty JSON object to the file and add your settings like so:

  1. For language specific settings, click Sublime Text > Preferences > Settings - More > Syntax Specific - User. Then save the file using the following format: LANGUAGE.sublime-settings. For Python-specific settings, save the file as Python.sublime-settings.
  2. You can obviously configure your settings to your liking. However, I highly recommend starting with my base and Python-specific settings and then making changes as you see fit.
  3. Optional: You can use Dropbox to sync all your settings. Simply upload your settings files to Dropbox and load them from there to sync the Sublime environments on all your machines.
  4. A good reference for settings can be found at the Sublime Text Unofficial Documentation.

Themes

ST3 also gives you the option to change the overall theme to better suit your personality. Design your own. Or, if you’re not artistically inclined, you can download one of the various custom themes designed by the Sublime community through Package Control. Check out ColorSublime to preview themes before installing them.

The ever popular Soda Dark Theme and the minimal Flatland are two of my personal favorites.

After installing a theme, make sure to update your base settings through Sublime Text > Preferences > Settings - User:

Packages

Besides the packaged themes, I take advantage of the following packages to speed up my workflow.

Sublime Text 3 Android Development

SideBarEnhancements extends the number of menu options in the sidebar, speeding up your overall workflow. Options such as New File and Duplicate are essential and should be part of ST3 out of the box. The Delete option alone makes it worth downloading. This feature simply sends files to the Trash, which may seem trivial, but if you delete a file without it, then it’s very difficult to recover unless you’re using a version control system.

Download this now!

Anaconda

Anaconda is the ultimate Python package. It adds a number of IDE-like features to ST3 including the following:

  • Autocompletion works by default, but there are a number of configuration options.
  • Code linting uses either PyLint or PyFlakes with PEP 8. I personally use a different linting package, as I will explain shortly, so I disable linting altogether within the user-defined Anaconda settings file, Anaconda.sublime-settings, via the file menu: Sublime > Preferences > Package Settings > Anaconda > Settings - User: {'anaconda_linting': false}
  • McCabe code complexity checker runs the McCabe complexity checker tool within a specific file. If you’re not familiar with what complexity is, be sure to visit the link above.
  • Goto Definitions finds and displays the definition of any variable, function, or class throughout your entire project.
  • Find Usage quickly searches where a variable, function, or class has been used in a specific file.
  • Show Documentation shows the docstring for functions or classes (if defined, of course).

You can view all of the features here or within the README file in ST3’s Package Settings: Sublime Text > Preferences > Package Settings > Anaconda > README.

Note:SublimeCodeIntel is another popular package that has many of the same features as Anaconda. I suggest testing them both out.

Download Sublime Text 3 Full

Djaneiro

Djaneiro supports Django templating and keyword highlighting and provides useful code snippets (tab completions) for Sublime Text. The snippet system is an incredible time-saver. You can create common Django blocks with only a few keystrokes for templates, models, forms, and views. Check out the official documentation to see a list of snippets.

My personal favorites are for templating: var creates {{ }} and tag creates {% %}.

requirementstxt

requirementstxt provides autocompletion and syntax highlighting as well as a nice version management system for your requirements.txt files.

SublimeLinter

SublimeLinter is a framework for ST3 linters. The package itself does not include any actual linters; those must be installed separately via Package Control using the SublimeLinter-[linter_name] naming syntax. You can view official linters here. There are also a number of third party linters, which can be viewed in Package Control. Check out the installation instructions here.

For Python linting, I recommend using SublimeLinter-pyflakes and SublimeLinter-pep8.

I also use SublimeLinter-jshint, SublimeLinter-pyyaml, SublimeLinter-csslint, SublimeLinter-html-tidy, and SublimeLinter-json.

Note: Most of these linters have dependencies associated with them, so please read the installation instructions before installing.

You can customize each linter in the user-defined SublimeLinter.sublime-settings file: Sublime Text > Preferences > Package Settings > SublimeLinter > Settings - User. For example, I ignore the following PEP 8 errors and warnings:

GitGutter

GitGutter shows little icons in ST3’s gutter area that indicate whether a line has been inserted, modified, or deleted since the last commit.

Note: If you want support for a number of distributed version control systems (Git, SVN, Bazaar, and Mercurial), check out Modific.

FTPSync

FTPSync syncs your project with your remote files. Simply open the file to download it (if the remote file is newer than your local file) and upload it to your remote server with every save. That’s a great way to keep your local and remote(s) in sync. You’ll want to make sure to add at least one remote connection by clicking Sublime Text > Preferences > Package Settings > FTPSync > Setup FTPSync.

Sample settings:

I personally set the password to null because I don’t want it visible in that file. FTPSync just asks for my password after each save.

AdvancedNewFile

AdvancedNewFile is used to create a new folder or file from within ST3 with key bindings alone.

Simply bring up the AdvancedNewFile input through the appropriate key binding. Then, enter the path, along with the file name into the input field. Upon pressing Enter, the file will be created. In addition, if the directories specified do not yet exist, they will be created. By default, the path to the file being created will be filled shown in the status bar as you enter the path information.

For a more detailed explanation on its usage, check out the documentation on GitHub. Be sure to read about Tab Completion as well as Predefined Aliases.

I replaced the normal Cmd+N command to create a new file with AdvancedNewFile by adding the following code to the Key Bindings - User file: Sublime Text > Preferences > Package Settings > AdvancedNewFile > Key Bindings - User:

You can also setup a default directory to start with: Sublime Text > Preferences > Package Settings > AdvancedNewFile > Settings - User

Now when I create a new file, the /Users/michaelherman/Documents/repos string is automatically inserted first, since 99% of the time I store all my scripts in that directory. Benvista photozoom pro 7.1 keygen.

Emmet

Emmet, previously known as Zen Coding, uses simple abbreviations to generate HTML or CSS code snippets.

For example, if you type a bang, !, and press Tab in an HTML file, then the HTML5 doctype and a few basic tags will be generated:

Check out the official documentation as well as this handy cheat sheet for more info.

Markdown Preview

Markdown Preview is used for previewing and building markdown files.

To use, open the Package Manager and type Markdown Preview to show the available commands:

  • Markdown Preview: Python Markdown: Preview in Browser
  • Markdown Preview: Python Markdown: Export HTML in Sublime Text
  • Markdown Preview: Python Markdown: Copy to Clipboard
  • Markdown Preview: GitHub Flavored Markdown: Preview in Browser
  • Markdown Preview: GitHub Flavored Markdown: Export HTML in Sublime Text
  • Markdown Preview: GitHub Flavored Markdown: Copy to Clipboard
  • Markdown Preview: Open Markdown Cheat Sheet

Once converted, the output file will be updated on each subsequent save.

Keyboard Shortcuts

  • Goto AnythingCmd+P is used for quickly finding and opening files. Just type in a part of a path and filename within a project and you can easily open that file. This is great for quickly opening files in large Django projects.
  • Goto Line NumberCtrl+G takes you to a specific line number in an active file.
  • Goto SymbolCmd+R lists all functions and classes within a file to make them easier to find. Simply start typing the one you want.
  • Go to beginning of lineCmd+Left and Go to end of lineCmd+Right help you navigate within lines.
  • Delete current lineCtrl+Shift+K deletes the current line.
  • Multi-Edit is by far my favorite shortcut:
    • Select a word and press Cmd+D to select the next same word. Then press Cmd+D again to select the next same word again, and so on.
    • Press Cmd+ to create a cursor for editing everywhere you click.
  • Block selectOption+ is used to select a block of text. It’s perfect for removing blank space when formatting a CSV file.

Note: For more shortcuts, take a look at this article.

Custom Commands

It’s easy to write your own custom commands and key bindings with Python. I currently use this workflow:

  1. Copy the path of the current file to the clipboard (link).
  2. Close all tabs except the active one (link).

Install these by adding the Python files to your /Sublime Text 3/Packages/User directory via the file menu (Sublime > Preferences > Browse Packages) and then opening the User directory. To complete the setup, bind them from the Key Bindings - User file (Sublime Text > Preferences > Package Settings > AdvancedNewFile > Key Bindings - User).

Additional Resources

Free Bonus:5 Sublime Text Tweaks to Boost Your Python Productivity, a free course that shows you how to optimize your Python development setup.

Conclusion

I hope that this article was helpful to you and that you were able to integrate some of the above packages and custom settings along with your own based on your personal preferences to improve your workflow.

If you have any questions or suggestions of your own, please let me know in the comments below. Finally, check out the dotfiles folder in this repo to view all the resources that I created. Cheers!

🐍 Python Tricks 💌

Get a short & sweet Python Trick delivered to your inbox every couple of days. No spam ever. Unsubscribe any time. Curated by the Real Python team.

About The Team

Each tutorial at Real Python is created by a team of developers so that it meets our high quality standards. The team members who worked on this tutorial are:

What Do You Think?

Real Python Comment Policy: The most useful comments are those written with the goal of learning from or helping out other readers—after reading the whole article and all the earlier comments. Complaints and insults generally won’t make the cut here.

What’s your #1 takeaway or favorite thing you learned? How are you going to put your newfound skills to use? Leave a comment below and let us know.

Keep Learning

Master Real-World Python Skills With Unlimited Access to Real Python

Already a member? Sign-In

Join us and get access to hundreds of tutorials, hands-on video courses, and a community of expert Pythonistas: