Not So Personal Space Mac OS
It can also help free up valuable storage space. Now your Mac does even more for you, so you can do more with your Mac. Siri Just like you, Siri can do great new things on a Mac. Talk about big news. No matter what you’re working on, your intelligent personal assistant is always a click away. Early New World ROM PowerPC-based Macs shipped with Mac OS 9.2 as well as Mac OS X. Mac OS 9.2 had to be installed by the user—it was not installed by default on hardware revisions released after Mac OS X 10.4. Most well-written 'classic' Mac OS applications function properly under this environment, but compatibility is assured only if the. Flashing the SD card using Mac OS X. To save yourself time and frustration, you may wish to use a procedure that has worked some time during the past 2 years. If so, skip ahead to the section for using the system tools from the command line. Note: In OS X each disk may have two path references in /dev. Lots of developers work with open source, but only a tiny fraction of those are good enough to get software that was designed for one platform to work on another one. We invented CrossOver software - a unique approach to cross-platform compatibility that does not require dual-boot or another OS license. Mac OS X 10.0 (code named Cheetah) is the first major release and version of macOS, Apple's desktop and server operating system. Mac OS X 10.0 was released on March 24, 2001 for a price of US$129. It was the successor of the Mac OS X Public Beta and the predecessor of Mac OS X 10.1 (code named Puma).
Click here to return to the 'Insert non-breaking spaces' hint |
That's been around as long as I can remember, I think in the pre-OS X days as well. I can only test it in Classic right now, but yes, it works there.
Yes, it was already there before Mac OS X, and with international keyboard layouts as well.
I'm not sure how far back this goes, …
It goes back to System 1.0.
Not So Personal Space Mac Os Catalina
In MS-Word (only) it is CMD-SHIFT-<hyphen> to create a non-breaking hyphen.
Non breaking hyphen us unicode u2011 - I'm not sure if it has a normal keyboard way of entering it, but if you choose the 'Unicode Hex Input' input method, you can do opt+2011 to enter it.
A bit clumsy though.
---
~/.sig: not found
Woah. I am surprised this isn't in here yet. This has definitely been around since the classic days, maybe even System 1.0 as another commenter suggests.
Option-Space also sometimes lets you type a space character when the spacebar would otherwise do something else, such as selecting the first item in a folder instead of activating Quicklook in the Leopard Finder (I think this hint was posted here). Ditto for selecting playlists in iTunes instead of play/pausing (I don't know if that has been hinted. Fair game if it hasn't).
I'm not sure how far back this goes, but on Leopard at least, pressing Option-Space on the US or US Extended keyboard layouts inserts a non-breaking space (U+00A0) rather than a normal space (U+0020).This has been the rule on French keyboards since... but it's broken in Mail.app in Leopard (I never used Mal.app before TimeMachine and the fact that a big mail database is a Go hog in backups). Mail.app 3 inserts normal spaces instead of non breaking spaces and it's frustrating. In French you insert non-breaking spaces before '; : ? !' and » and after «. So you get punctuation marks at the beginning of lines and that's not very clean, to say the least.
Mac Os Desktop Spaces
In OS X, you can easily create new shortcuts.
Create a file called: ~/Library/KeyBindings/DefaultKeyBinding.dict
using a plain text editor.
Add a line like:
'^`' = ('insertText:', '‑'); /* nbhy */
This means 'Control-` generates a command to insert a non-breaking hyphen character.
You can also insert a whole word, which is good for words or sequences of words you type often that are long like:
'^M' = ( 'insertText:', 'Massachusetts' );
'^N' = ( 'insertText:', 'New Hampshire' );
which means Control-M (not Control-m) inserts Massachusetts.
You can also use 2 character sequences, like
'^s' = {
'^c' = ('insertText:', '✔');
'^x' = ('insertText:', '✘'); /* X Symbol */
'^1' = ('insertText:', '¹'); /* superscript 1 */
'^2' = ('insertText:', '²'); /* superscript 2 */
'^3' = ('insertText:', '³'); /* superscript 3 */
};
Then Control-s followed by Control-c enters a check mark, etc.
Yes, this also be used for commands like:
'^a' = 'deleteToBeginningOfParagraph:';
which is similar to the built-in Control-k command (delete to end of paragraph and put it in the yank buffer).
Or to move the cursor right by 7 words:
'^UF703' = (
'moveWordForward:',
'moveWordForward:',
'moveWordForward:',
'moveWordForward:',
'moveWordForward:',
'moveWordForward:',
'moveWordForward:'
);
I get endless amusement out of this kind of thing.