1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2024-11-22 18:37:41 +01:00
rolens/internal/ui/open.go

7 lines
117 B
Go
Raw Normal View History

2023-02-21 17:47:21 +01:00
package ui
2023-02-11 21:57:52 +01:00
// Reveal reveals the specified file in the Finder.
2023-02-21 17:47:21 +01:00
func (u *UI) Reveal(fname string) {
2023-02-11 21:57:52 +01:00
reveal(fname)
}