nerdtree-execute icon indicating copy to clipboard operation
nerdtree-execute copied to clipboard

Plugin for NERD Tree that provides an execute menu item, that executes system default application for file or directory

Results 7 nerdtree-execute issues
Sort by recently updated
recently updated
newest added

When user wants to use a command like "xdg-open", they can add `g:nerdtree_execute_cmd` variables and modify the command. ``` if s:is_plugged("nerdtree-execute") if executable('xdg-open') let g:nerdtree_execute_cmd = 'xdg-open' endif endif ```

Verified,l it works on my MacOS. But it doesn't support my Windows10.

Doesn't seem to be working for me on Mac. Not sure how this plugin exactly works, but on Mac - there is cli tool `open` which this plugin may use...

Linux Mint 19.1 Cinnamon has xdg-open command as default application launcher. Added this exception to your conditional statement.

Change `gnome-open` and `kde-open` to `xdg-open` which is a free desktop standard. I take the `xdg-open` idea from [issue 7](https://github.com/ivalkeen/nerdtree-execute/issues/7)

In a Linux system it just handles Gnome or KDE desktop environments. The fallback should be `xdg-open`, a desktop-independent tool for configuring the default applications of a user. It's available...

Details can be found here: https://github.com/preservim/tagbar/issues/840