SublimePlugin : StataEditor (for Sublime Text 3)
标签(空格分隔): SublimePlugin Stata
Install Pywin32 and StataEditor
- install the Pywin32 package from Package Control.
- install the StataEditor package from Package Control.
The Path to Stata Installation
- You also need to provide the path to your Stata installation. To do so, go to Preferences -> Package Settings -> StataEditor -> Settings - Default
- If the path in that file corresponds to the path to your Stata installation you do not need to do anything.
- Otherwise, copy the content of the file and go to Preferences -> Package Settings -> StataEditor -> Settings - User and paste your copied text in the new file. Then change the path to where your Stata installation is located (note that you need to use forward slash, "/", instead of backward slash, "") and save the file.
- In addition, if you do not use Stata 13, change the Stata version number.
- Do not change the content of the Settings - Default file. While this will work temporarily, with the next update your changes will disappear. The content of the Settings - User file will not be overwritten when the package is updated.
Register the Stata Automation Type Library
- 创建StataMP-64.exe 快捷方式;
- 在快捷方式中,选择属性,在目标(T)的文件地址之后添加/Register(或添加/UseRegistryStartin也可以)例如:
"D:\stata13\StataMP-64.exe" /Register
自定义设置
Stata设置:
Do-fileEditor -> Edit -> Preferences -> Advanced -> Edit do-files opened from Windows instead of executing them
快捷键:
- 使用
CTRL+D
或者ctrl+R
运行 - 本地宏 local 使用 Alt+L,亦可按 `(ESC下)自动补齐
主题方案
- install the Theme - Nil package from Package Control.
修改行距
在Preferences -> Settings - User)中,可以做以下调整,解决do-file-editor无法直接修改行距的问题。
{
"color_scheme": "Packages/Nil-Theme/Big Duo.tmTheme",
"font_size": 11.0,
"ignored_packages":
[
"Vintage"
],
"line_padding_bottom": 2,
"line_padding_top": 2,
"update_check": false,
"word_wrap": "auto"
}
自定义快捷键
在Preferences -> keybinding - user中可以参照key binding - defult中的设置复制修改,例如将ctrl+D运行可改为f12键。
[
{ "keys": ["f12"],"command": "stata_execute","args": {"Mode": "do"},"context":
[
{ "key": "selector", "operator": "equal", "operand": "source.stata" }
]
},
{ "keys": ["ctrl+r"], "command": "stata_execute", "args": {"Mode": "run"}, "context":
[
{ "key": "selector", "operator": "equal", "operand": "source.stata" }
]
}
]
添加右键快捷方式
标签(空格分隔): SublimeText3
将下面的代码保存为 sublime_addright.inf 并放在 Sublime Text 3 的安装目录下。
[Version]
Signature="$Windows NT$"
[DefaultInstall]
AddReg=SublimeText3
[SublimeText3]
hkcr,"*\\shell\\SublimeText3",,,"用 Sublime Text 3 打开"
hkcr,"*\\shell\\SublimeText3\\command",,,"""%1%\sublime_text.exe"" ""%%1"" %%*"
hkcr,"Directory\shell\SublimeText3",,,"用 SublimeText3 打开"
hkcr,"*\\shell\\SublimeText3","Icon",0x20000,"%1%\sublime_text.exe, 0"
hkcr,"Directory\shell\SublimeText3\command",,,"""%1%\sublime_text.exe"" ""%%1"""
然后右键点击“安装”,即可。
Stata Editor for Sublime Text 3[1][2]
- Version 0.8.0
- Date: December 29, 2016
Features
This package provides the ability to write and run Stata code from Sublime Text 3 (ST3). Features in this package include:
- Clear syntax highlighting
- Ability to run do-files from ST3 using both ctrl + D ("do") and ctrl + R ("run")
- Run only selected code with support for multiple selections
- Access Stata help files from ST3 by selecting the command for which you want access to the documentation and press F1 (open help file in ST3), or ctrl + F1 (open help file in Stata). For the former option, an internet connection is required.
- Shorthand for creation of locals by pressing alt + L
- Load a new Stata dataset by selecting a path and pressing alt + shift + U (Equivalent to the command "use 'path', clear"). Please, note that your current work will then be lost, so remember to save your dataset!
- Some snippets and completions (edit the settings to add completions for functions, commands and files)
- Plus all other features that come with ST3!
Requirements and Setup
This package only works on Windows machines. To use Stata with Sublime Text on OS X, try Stata Enhanced. StataEditor has been tested on Sublime Text 3 together with Stata 13 and Stata 14 on Windows 7 and Windows 8. I have very briefly tested it on Stata 11 and Stata 12 and it seems to be working.
To install the package follow the steps outlined below. You can install StataEditor without Package Control, but in that case you probably already know what to do.
- Download and install ST3 if you do not already have it installed.
- Install Package Control. To get Package Control, click here and follow the instructions for ST3.
- Open ST3 and click Preferences -> Package Control. Choose "Install Package" and choose StataEditor from the list. Repeat this step and install the Pywin32 package.
- If the path to your Stata installation is "C:/Program Files (x86)/Stata13/StataMP-64.exe" you can skip this step. If not, select Preferences -> Package Settings -> StataEditor -> Settings - Default. Copy the content and then go to Preferences -> Package Settings -> StataEditor -> Settings - User and paste your copied text in the new file. Then change the path to where your Stata installation is located (note that you need to use forward slash, "/", instead of backward slash, "") and save the file. In addition, if you do not use Stata 13, change the Stata version number. Do not change the content of the Settings - Default file. While this will work temporarily, with the next update your changes will disappear. The content of the Settings - User file will not be overwritten when the package is updated.
- Finally, to use Stata interactively from ST3, you also need to register the Stata Automation type library. Instructions can be found here. Note that I have had to use the Windows Vista instructions for both Windows 7 and Windows 8 to get Stata Automation to work. Once the Stata Automation type library has been registered, you are good to go!
Encoding
Stata 14 has unicode support and uses utf-8 encoding just as ST3. Earlier versions of Stata do not have unicode support. Therefore, if you write Stata code containing non-ASCII characters in ST3, you may notice that these characters have been replaced with nonsense when you open the file in Stata's native do-file editor (versions 13 and earlier). This problem is easily avoided by saving your file with a different encoding in ST3: Simply open "File -> Save with encoding", and choose Western (Windows 1252) (or another appropriate encoding). If your Stata version uses a different encoding than Windows 1252 (again, only Stata 13 and earlier), it is possible to change encoding by going to the settings file (see step 4 under "Requirements and Setup" above) and change the character_encoding option. For a list of encodings to use, see the following link
Acknowledgments
Thanks to Adrian Adermon and Daniel Forchheimer for helpful suggestions and to Sergio Correia for providing additional key bindings.