Skip to content

Instantly share code, notes, and snippets.

@drewdiver
Last active May 12, 2020 12:12
Show Gist options
  • Save drewdiver/eccf26838909dd3a5238acde248dde53 to your computer and use it in GitHub Desktop.
Save drewdiver/eccf26838909dd3a5238acde248dde53 to your computer and use it in GitHub Desktop.
Simplify the current BBEdit window for Markdown editing
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