diff options
author | Max <post@wickenrode.com> | 2014-09-18 23:05:40 +0200 |
---|---|---|
committer | Max <post@wickenrode.com> | 2014-09-18 23:05:40 +0200 |
commit | f4b384bc3e6ac805567af71e515b8dc3ae79c9b6 (patch) | |
tree | 3be1e8797f708185ba2000e4ad2bee2ca02f5eb6 /Source/SPBundleCommandTextView.m | |
parent | ba8ed46081716063f17521a8b8cece9889765a57 (diff) | |
download | sequelpro-f4b384bc3e6ac805567af71e515b8dc3ae79c9b6.tar.gz sequelpro-f4b384bc3e6ac805567af71e515b8dc3ae79c9b6.tar.bz2 sequelpro-f4b384bc3e6ac805567af71e515b8dc3ae79c9b6.zip |
Disable Smart quotes in Bundle Editor
Diffstat (limited to 'Source/SPBundleCommandTextView.m')
-rw-r--r-- | Source/SPBundleCommandTextView.m | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/SPBundleCommandTextView.m b/Source/SPBundleCommandTextView.m index b5436ca5..4ca63451 100644 --- a/Source/SPBundleCommandTextView.m +++ b/Source/SPBundleCommandTextView.m @@ -62,6 +62,10 @@ [commandScrollView setHasHorizontalRuler:NO]; [commandScrollView setHasVerticalRuler:YES]; [commandScrollView setRulersVisible:YES]; + + // disable typo stuff in 10.8+ SDK + [self setAutomaticDashSubstitutionEnabled:NO]; + [self setAutomaticQuoteSubstitutionEnabled:NO]; // Re-define tab stops for a better editing [self setTabStops]; |