OpenFilesDefault opens selected files with default app for that file type (os defined). runs open on Mac, xdg-open on Linux, and start on Windows
()
| 34 | // OpenFilesDefault opens selected files with default app for that file type (os defined). |
| 35 | // runs open on Mac, xdg-open on Linux, and start on Windows |
| 36 | func (fn *Node) OpenFilesDefault() { //types:add |
| 37 | fn.SelectedFunc(func(sn *Node) { |
| 38 | sn.openFileDefault() |
| 39 | }) |
| 40 | } |
| 41 | |
| 42 | // openFileDefault opens file with default app for that file type (os defined) |
| 43 | // runs open on Mac, xdg-open on Linux, and start on Windows |
nothing calls this directly
no test coverage detected