talon-scripts/community/apps/stata/stata_do_file_editor.talon
2025-08-19 08:06:37 -04:00

26 lines
382 B
Plaintext

# Commands for the Stata Do-File Editor
os: windows
app: stata
win.title: /^Do-file Editor/
-
do this: key(ctrl-d)
do line:
edit.select_line()
key(ctrl-d)
do (all | file):
edit.select_all()
edit.copy()
key(ctrl-d)
do way up:
edit.extend_file_start()
edit.copy()
key(ctrl-d)
do way down:
edit.extend_file_end()
edit.copy()
key(ctrl-d)