After searching for a file in Nautilus, how can I open its parent folder?

Jadonchristensen found a way to add "Open parent folder" to Nautilus' context menu:
1) install Nautilus Actions from terminal:
sudo apt-get install nautilus-actions
2) run Nautilus Actions from terminal:
nautilus-actions-config-tool
3) click on 'Add New Action' and fill the form as in the following:
label = Open Parent Folder
path = nautilus
parameters = %d
5) save and exit
6) then simply right-clicking on the search result and selecting "Open parent folder" will do the trick.
It would be interesting to know if it's possible to open the containing folder in a NEW TAB rather than a new window.
Is there an option one can add to the nautilus command?
Successfully tested in
This has already been requested as a feature: http://brainstorm.ubuntu.com/idea/12628/
A workaround mentioned there is to create a nautilus script:
#!/bin/bash
# Save this to "~/.gnome2/nautilus-scripts/Browse Container"
# set Properties Permissions Executable
# while in Nautilus : right-click-object/Scripts/Browse Container
nautilus `dirname $NAUTILUS_SCRIPT_SELECTED_URIS`
Alternatively you can use the following syntax to open Nautilus and highlight the file in the containing folder:
#!/bin/bash
nautilus "$1"
If you do not wish (like me) to install nautilus-actions, there's a workaround.
ctrl + i.ctrl + c to
copy the location to the clipboard.ctrl + l to open the location bar.ctrl + v to paste the file's location followed by enter.It's not as convenient as the Nautilus actions method, but it avoids installing a package that might in principle, have security issues.
It's not possible with the default nautilus that is currently shipping with Ubuntu. If you'd like to see this feature, you have two options:
The GNOME 3 Nautilus component in its version 3.10 (provided with Ubuntu 14.04 Trusty Tahr) has a new option "Open Item Location" in the item selection context menu of a search. It opens the parent folder of the selected item, and differs from jadonchristensen's Nautilus custom action (reported by scrondo) for the selection context menu in 2 ways:
I do not know if there are some ways to configure the custom action so that its behavior matches the new "Open Item Location". It seems especially difficult for the Recent place, which is neither a physical folder nor the result of a classic search.