Last active
May 12, 2020 12:12
-
-
Save drewdiver/eccf26838909dd3a5238acde248dde53 to your computer and use it in GitHub Desktop.
Simplify the current BBEdit window for Markdown editing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell application "BBEdit" | |
tell front window | |
set show line numbers to false | |
set show gutter to true -- or false if you don't want to use folding | |
set show navigation bar to false | |
set show page guide to false | |
set soft wrap text to true | |
set soft wrap width to 80 | |
set source language to "Markdown" -- or "Text File" | |
end tell | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment