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 window 1 | |
set start_line to startLine of selection | |
set end_line to endLine of selection | |
select (lines start_line thru end_line) | |
set selectionCopy to duplicate selection | |
select insertion point after selection | |
set selection to selectionCopy | |
set newInsertionPoint to (characterOffset of selection) + (length of selection) - 1 | |
select insertion point before character newInsertionPoint |
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
defaults write org.vim.MacVim MMTextInsetRight '20' |