-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing issue with clang-format and Xcode 11.
This fixes an issue with Xcode 11 and a (possible lang standing issue) where clang-format could not find `.clang-format` files except at root. It requires a ~..bash_profile file exists.
- Loading branch information
1 parent
2e70670
commit d3b3060
Showing
3 changed files
with
11 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
tell application "Keynote" | ||
set font of presenter notes of every slide of document 1 to "TrebuchetMS" | ||
set size of presenter notes of every slide of document 1 to 24 | ||
end tell |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
tell application "Keynote" | ||
tell last image of current slide of front document | ||
set width to 3 * width | ||
end tell | ||
end tell |
This file contains 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