The Omni Group
These forums are now read-only. Please visit our new forums to participate in discussion. A new account will be required to post in the new forums. For more info on the switch, see this post. Thank you!

Go Back   The Omni Group Forums > OmniFocus > OmniFocus 1 for Mac
FAQ Members List Calendar Search Today's Posts Mark Forums Read

 
Complete Keyboard Shortcuts for OmniFocus Thread Tools Search this Thread Display Modes
The keyboard shortcuts document that the OmniGroup has created for OmniFocus has most keyboard shortcuts, but not all. I couldn't find a complete list, so I thought a community-contributed shortcuts documents was needed. I started with the OmniGroup document and added a few items, but I know there are more.

Please contribute! Just post a note to this thread and I'll add it to the list.

Since the symbols for control, option, etc. can't be shown on the forum, I've replaced them with <control>, <option>, etc. When the list is really complete (with your help), the symbols can be put back for a PDF version of the list.


Code:
The Complete OmniFocus Keyboard Shortcuts

________________________
Page 0
________________________
Not covered in the original Omnigroup document:

Focus/Selection Legend:
Some keyboard shortcuts will do different things depending on the current focus (sidebar or main) and selection (item or text). If you see <item> as part of a keyboard shortcut, then the keyboard shortcut only works if the entire item, rather than some text in the item, is selected. For example, <item>D means that if you type 'd', and one or more items are selected, the items will be moved down.
	Focused on sidebar	<sidebar>
	Focused on main	<main>
	Item(s) selected	<item>
	Text selected (item)	<text>
	Text selected (in note)	<text:note>
		<text:note> is almost always the same as <text>, so if you see <text> it usually also applies to <text:note>

Non-menu Keyboard Shortcuts
	Switch from text editing to item selected	<main><text>ESC
	Switch to/fom editing note (1 item selected)		<command>'
	Hide/show note (multiple items selected)		<command>'
		all notes in folder/project	<sidebar><command>'

Modifier Clicks
	Open new window focused on folder or project	<option> double-click project or folder
	Please contribute more...
________________________
Page 1
________________________
OmniFocus Keyboard Shortcuts

Legend
	Return	<return>
	Shift	<shift>
	Control	<control>
	Option	<option>
	Command	<command>
	up arrow	<up>
	down arrow	<down>
	left arrow	<left>
	right arrow	<right>

Common Shortcuts
	Add Action	Return (except <item:note>)
	New Window	<option><command>N
	Synchronize with Server	<control><command>S
	Clean Up	<command>K
	Planning Mode	<command>1
	Context Mode	<command>2
	Inbox	<option><command>1
	Quick Entry	<control><option>Space

Quick Entry's shortcut can be
customized in Preferences
_________
Column 2
_________

File Menu
	Show Quick Entry	<command>N
	Add Project	<shift><command>N
	Add Folder	<option><shift><command>N
	Add Single-Action List	<control><shift><command>N
	New Window	<option><command>N
	Import	<option><command>I
	Export	<option><command>E
	Synchronize with Server	<control><command>S
	Synchronize with iCal	<option><command>S

________________________
Page 2
________________________
OmniFocus Keyboard Shortcuts

Edit Menu

Outlining
	Add Child	<command>}
	Add Aunt	<command>{
	Move
		Move Down	<control><command><down> -or- <item>D
		Move Right	<control><command><right> -or- <item>R
		Move Up	<control><command><up> -or- <item>U
		Move Left	<control><command><left> -or- <item>L
	Indent	<command>]
	Outdent	<command>[
	Group	<option><command>L -or- <item><shift>G
	Ungroup	<item><shift>U
	Clean Up	<command>K
	
Insert Time Stamp
	Short Date	<command>/
	Short Date and Time	<command>|
	Time	<command>@
	Long Date	<option><command>/
	Long Date and Time	<option><command>|
_________
Column 2
_________
View Menu
	Planning Mode	<command>1
	Context Mode	<command>2
	Inbox	<option><command>1
	Focus on Selection	<control><command>F
	Go to Sidebar/Outline	<command>4
	Show in Other Mode	<option><command>R
	Expand All	<control><command>9
	Collapse All	<control><command>0
	Expand Rows	<command>9
	Collapse Rows	<command>0
	Collapse Rows Completely	<option><command>0
	Show/Hide Toolbar	<option><command>T



________________________
Page 3
________________________
OmniFocus Keyboard Shortcuts

Quick Entry
	Save to Inbox	<command>S	<command>K
	Cancel Without Saving	ESC

Quick Entry's shortcuts can be
customized in Preferences

Miscellaneous
	Show Inspectors	<shift><command>I
	Show Perspectives	<control><command>P
	New Project/Context in Cell	<command><return>

When Selected:
	Complete Action/Project	<item> Space
	QuickLook Attachment	Space
_________
Column 2
_________
User-Created Shortcuts
	Clippings	_____
	Quick Entry	_____
	Perspectives:
	________________	_____
	________________	_____
	________________	_____
	________________	_____
	________________	_____
	________________	_____
	________________	_____
	________________	_____
	________________	_____
	________________	_____
 
This is fabulous! Thank you. I wish I had something to add :)
 
Maybe a bit off topic, but anybody knows a keyboard shortcut to put a project in «on hold» status? Thanks!
 
Quote:
Originally Posted by emvac1 View Post
a keyboard shortcut to put a project in «on hold» status
You could assign a shortcut to a script like this, which toggles selected projects back and forth between active and on hold status.

Code:
tell application id "OFOC"
	tell front document window of front document
		repeat with oPanel in {content, sidebar}
			set refProjects to (a reference to (selected trees of oPanel where class of its value is project))
			set lngProjects to (count of refProjects)
			if lngProjects > 0 then exit repeat
		end repeat
		
		if lngProjects < 1 then return
		if status of value of first item of refProjects is active then
			set status of value of refProjects to on hold
		else
			set status of value of refProjects to active
		end if
	end tell
end tell
 
Oh wow this is awesome! Tanks a lot!
Ev

Last edited by emvac1; 2011-08-22 at 05:24 PM..
 
How about a shortcut to make a project repeating?
 
Given that you have to supply a number of different bits of information when you set up a repeat, it's a bit unclear to me how this proposed shortcut is going to work...do all of your repeating projects repeat in exactly the same fashion?
 
When entering a new item, I would like to type the title, context, project, etc, but then I would like to use the keyboard to also type in the expanded note area to add further details for the task. Is there a way to activate the expanded note using the keyboard? I've only been able to click on the paperclip icon on the far right side of the row. Thanks!
 
Try command-' to edit the note. Do it again when you are done and the note will be closed.
 
FYI, there's a really great Dashkard for OmniFocus:

 
 


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
Keyboard shortcuts for OmniFocus 1 (or 2)? fidic OmniFocus 1 for Mac 11 2013-05-15 02:35 PM
Keyboard Shortcuts Flexattend OmniFocus 1 for Mac 2 2011-10-01 12:23 AM
Can I use keyboard shortcuts with an external keyboard? [A: Feat. Requests filed.] jason.verly OmniFocus for iPad 2 2011-01-21 10:47 PM
Keyboard shortcuts Stu Jackson OmniGraffle General 1 2009-09-22 12:52 AM
Keyboard Shortcuts (ei Command+1 etc.) for Search Shortcuts Gazam OmniWeb Feature Requests 5 2006-12-08 02:44 PM


All times are GMT -8. The time now is 05:10 AM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.