The Sublime Text 3 (ST3) is probably the most popular text editor under the macOS platform. This plugin (v.1.3.9) is committed to making the ST3 to be the favourable and handy Stata do-file editor for Mac users.
- This package has been accepted by the Sublime Text package manager on 16th Jan 2017.
- Last edited on 11th May 2021 by Zizhong Yan. Comments are welcome.
v1.3.10 (11/May/21): Full support for Stata 17 as well (in progress). Now one can select any word, press $
to make it as ${word}. And select ${word}, press $
to make it as word. Select any word, press CMD +/ to make the selected word toggled. And press CMD +/ again to make toggled word to original word.
v1.3.9 (12/Sep/20): Full support for macOS Catalina & Stata 13, 14, 15 and 16 SE/MP/IC.
v1.3.7 (01/Aug/19): Full support for Stata 13, 14, 15 and 16 SE/MP/IC.
v1.3.4 (28/May/18): Some minor corrections. Also thanks for WildGunman's suggestion on the package config directories.
v1.3.3 (12/Aug/17): CTRL+r can run the code quietly in Stata (as opposed to do it noisily by CTRL+d). Thanks a lot for Andrea Discacciati's suggestions.
v1.3.1 (05/Aug/17): Stata 15 introduced the Markdown Document feature which allow users to convert their narrative text, code and outputs into a elegantly formatted document (e.g. Word, PDF, or HTML files). In this update, we provide the snippests and syntax highlighting for users to code the Stata markdown script efficiently (Many thanks for PJ Paul's suggestions). Please click here to see how to use it.
v1.3.0 (04/Aug/17): Full support for Stata 13, 14 and 15 SE/MP/IC.
v1.1.2 (08/Jun/17): The shortcut CTRL+SHIFT+d can also be used to execute the WHOLE do-file if no Matlab-style code blocks are defined. Many thanks for Alvaro Carril's suggestion on this!
v1.1.0 (14/Feb/17): We fixed the ctrl+d problem for users installed via package control!
2, Split the do-file into cells, and execute a block of do-file (just like what you do in Matlab) !!
4, Automatic template for i) writting common used commands, ii) for loops, iii) writing program.(We are updating/incorprating more templates/snippets for Stata commands.)
Firstly you need to install the Sublime Text 3 (ST3).
The installation is very simple as this package has been accepted by the Sublime Text package manager. There are 3 steps:
- Open the ST3, from the main application menu, navigate to
Tools
, open theCommand Palette
(shortcut: CMD+SHIFT+P) - Select
Package Control: Install Package
- Search
Stata Improved Editor
and hit Enter to complete installation.
If you could not find the package control in your ST3, you will need to install it in advance. To install it, please go to this webpage.
Note that though the trial version of the ST3 is untimed and unlimited, the license need be purchased.
Open the ST3, click the Preferences-> Browse Packages-> Then you will reach the folder ~/Library/Application Support/Sublime Text 3/Packages
. Download this Stata plugin from here, and unpack the zip fil into that folder, and rename it as "Stata Improved Editor".
CTRL+d -- Execute (do) selected codes. As opposite to "do" the code by CTRL+d, CTRL+r can "run" the code quietly in Stata.
Note that if no code is selected, the current line of the code will be sent to Stata.
Say, you have the following do-file:
-
The "break line" can be simply inserted by CTRL+s .
-
Put the cursor within a block, click CTRL+SHIFT+d to execute this block.
If there is no code blocks are defined by the aforementioned "break line", clicking CTRL+SHIFT+d could execute the whole script.
Type comm-s
, you will have a section header:
🏊 you might also try comm-subsec
to trigger a sub-section header.
Type comm-l
, you will insert a line of comments:
Type comm-t
, you will insert to do list:
Remember to press TAB to fill up these templates!!!
Type for...
, you will trigger a auto-completed for loop template, such as:
Remember to press TAB to fill up this template.
Type prog...
, you will trigger:
Press TAB define the name of the program.
We are updating/incorprating more templates/snippets for Stata commands.
Current, there are a few auto-completions. For instance, when type merge
, you will trigger
Again, press TAB to fill up this template.
Select any word, press ` to make it as 'word'.
Select any word, press $
to make it as ${word}. And select ${word} press $
to make it as word.
🏊New: If you did not select any word but put the cursor in a word, then pressing CMD+
` can also make it as 'word'.
Select any word, press CMD +/ to make the selected word toggled.
And press CMD +/ again to make toggled word to original word.
Select any command, press F1 to see the help file.
Select any variable(s), press F2 to see the data browser.
https://www.youtube.com/watch?v=4vvsk8lG6fY&t=389s
If you openned multiple instances of Stata, please note that this plugin will send the code to your MOST RECENTLY OPENNED Stata session.
If different versions of Stata are installed in your Mac (e.g. both Stata 14 and Stata 15), the plugin will send code to the most updated version of Stata (i.e. Stata 15).
1, This plugin is motivated by the article "Some notes on text editors for Stata users" By Nicolas J. Cox, and some part of the code is motivated and modified based on following packages: StataEditor for the auto-completion, and [StataEnhanced by Andrew Heiss] (https://github.com/andrewheiss/) for the AppleScript. ).
This plugin basically creates a temporary do-file, which is then sent to the Stata to execute. All temporary cache files will be removed shortly when you close the Stata session.
2, This package is the Mac only. For Windows users, please follow the instructions in the Nicolas J. Cox's webpage above.
3, This plugin has been tested on Mac OS X Yosemite, El Capitan and macOS, and supports Stata 13, 14, 15 and 16 SE/MP/IC.
MIT License
Copyright (c) 2016-2021 Zizhong Yan and contributors
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.