acarril / StataImproved

Improved Stata Editor for macOS : a sublime text 3 plugin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Improved Stata Editor for macOS : using sublime text 3

The Sublime Text 3 (ST3) is probably the most popular text editor under the macOS platform. This plugin (v.1.1.0) is committed to making the ST3 to be the favourable and handy Stata do-file editor for Mac users.

🎼 News 🎼

In update v1.1.2 (08/06/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 acarril's suggestion on this!

In update v1.1.0 (14/02/17 ), we fixed the ctrl+d problem for users installed via package control!

🏆 Main Features

1, Execute the selected do-file

2, Split the do-file into cells, and execute a block of do-file (just like what you do in Matlab) !!

3, Automated way to write Comments toggle, create a Fancy Section Header, and a To Do List.

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.)

5, Select any word, press `, it will become 'word'.

6, Select any word, press $, it will become ${word}.

7, Select any word, press cmd+/, it will become / word */*.

8, Select any command, press F1 to see its help file.

9, Select any variable(s), press F2 to see the data browser.

10, Press F5, insert the current date and time in the code.

11, Stata Syntax-highlighting

💿 Installations

Firstly you need to install the Sublime Text 3 (ST3).

Installation via packge control. (easiest and recommended🏅)

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 the Command 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.

Manual installation

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 "StataImproved".

🎷 Usage

🎷Code Execution

CTRL+d -- Execute selected codes. if no code is selected, execute the current line.

🎷Matlab Style Execution for a Block

Say, you have the following do-file:

  1. The "break line" can be simply inserted by CTRL+s .

  2. Put the cursor within a block, click CTRL+SHIFT+d to execute this block.

🎷Run the whole do-file (NEW)

If there is no code blocks are defined by the aforementioned "break line", clicking CTRL+SHIFT+d could execute the whole script.

🎷Section Header, Comments toggle, and To Do List.

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!!!

🎷For loops template

Type for..., you will trigger a auto-completed for loop template, such as:

Remember to press TAB to fill up this template.

🎷Write a program

Type prog..., you will trigger:

Press TAB define the name of the program.

🎷Commands auto-completion

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.

🎷Macros - Local and Global

Select any word, press ` to make it as 'word'.

Select any 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'.

🎷Toggle comments

Select any word, press CMD +/

🎷Help File

Select any command, press F1 to see the help file.

🎷Data Browser

Select any variable(s), press F2 to see the data browser.

🎷DEMO (YouTube)

https://www.youtube.com/watch?v=4vvsk8lG6fY&t=389s

Multiple Instances of Stata

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 13 and Stata 14), the plugin will send code to the most updated version of Stata (i.e. Stata 14).

Background information:

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 and 14 SE/MP/IC.

License

MIT License

Copyright (c) 2016-2017 Zizhong Yan & Chuhong Wang

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.

About

Improved Stata Editor for macOS : a sublime text 3 plugin

License:MIT License


Languages

Language:Python 99.0%Language:Stata 1.0%