Today's Question:  What does your personal desk look like?        GIVE A SHOUT

 ALL


  Package Control doesn't show up in Sublime Text 3

Package Control is a package management console for managing packages in Sublime Text. It is frequently used to install, update packages. In Sublime Text 3, the Package Control package can be installed by following instructions at https://packagecontrol.io/installationAfter installation, when you press Ctrl + Shift + P, a dialog with a text field will show up and package control commands can be typed and executed. However, if you don't see the expected package control commands showing up, there might be some problem with the installation or setting. What should you do now?First,...

24,729 7       SUBLIME TEXT SUBLIME TEXT 3 PACKAGE CONTROL


  Shortcut keys in Sublime Text 3(Animated demo)

Sublime Text 3 is a light weight code editor which supports lots of languages. It has lots of shortcuts and plugins easing work of programmers. In this post, we will introduce some shortcuts supported in Sublime Text 3 and show how powerful they are.1. Select sibling matching(equal) word (Ctrl + D)Put the cursor on one word, press Ctrl + D to select the word, then press Ctrl and following by pressing D, it will select next matching word. The number of Ds pressed will mean number of matching word to select. For example, if pressing Ctrl and followed by D for three times, it will select three ma...

4,326 0       TIPS SHORTCUT KEY SUBLIME TEXT


  Add Sublime Text to your context menu on right click

When opening a text file, you may be used to right click on the file to be opened and then choose the application which can open the file from the context menu. On the context menu, you may see a menu item like "Edit with Notepad++".Nowadays many people especially programmers like to use Sublime Text, but by default this application will not show on the context menu when you right click on a file. There is now frequent request to add this application to the context menu. Here we show a simple batch file which can help you achieve this.Below is the batch code :@echo offSET sublimeTextPath=C:\Pr...

26,083 9       WINDOWS SUBLIME TEXT CONTEXT MENU


  Fuzzy search algorithm in Sublime Text

Fuzzy string searching is the technique of finding strings that match a pattern approximately (rather than exactly. In many editors, we can easily find the Find menu item to do exact matching. While in Sublime Text and some other editors, we can use fuzzy string searching as well if we just want to have an approximate match.There is some algorithm implemented in Sublime Text to implement achieve this. First the search query is split into characters, join them with a regex wildcard, and then run the regex on your set of strings.stringsToSearch.forEach(function(string) { if (RegExp(string.spl...

6,793 2       SUBLIME TEXT FUZZY SEARCH


  The story behind Sublime Text

Sublime Text is a cross-platform text and source code editor, with a Python application programming interface (API). The graphical user interface design was inspired by Vim.Its functionality is also extendable with plugins; Post its release, it gained much attention and wide popularity. Do you know what's the story behind Sublime Text?Jon Skinner left his job as a software engineer at Google in order to pursue a dream: to build a better text editor. The end result is the popular Sublime Text today. The initial version of Sublime Text was released to the public on January 18, 2008. Its GUI...

24,921 3       HISTORY STORY SUBLIME TEXT


  Write high quality JavaScript and CSS with SublimeLinter

SublimeLinter is a plugin for one of the front end editor--Sublime Text, it is used to highlight those syntax not conforming to standard or wrong, it supports JavaScript,CSS,HTML,Java,PHP,Python,Ruby and some more.This article will introduce how to configure SublimeLinter in Windows to validate JavaScript and CSS codes.PreparationInstall Sublime Text package control tool : http://wbond.net/sublime_packages/package_controlInstall SublimeLinter with Sublime Text package control tool :https://github.com/SublimeLinter/SublimeLinterInstall Node.js, recommend you to install Windows Installer version...

8,872 0       VALIDATION SUBLIMELINTER SUBLIME TEXT