This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on run argv | |
| # seem to need the full path at least in some cases | |
| set nvimCommand to "/usr/local/bin/nvim " | |
| set filepaths to "" | |
| if argv is not {} then | |
| repeat with currentFile in argv | |
| set filepaths to filepaths & quoted form of POSIX path of currentFile & " " | |
| end repeat |
OlderNewer