Skip to content

Instantly share code, notes, and snippets.

@ijash
Last active March 19, 2019 10:56
Show Gist options
  • Save ijash/bf00167506337d918b3070a7ce57b1a7 to your computer and use it in GitHub Desktop.
Save ijash/bf00167506337d918b3070a7ce57b1a7 to your computer and use it in GitHub Desktop.
Open folder in Visual Studio Code with just a right click. Applicable in linux mint 19.1 cinnamon.
[Nemo Action]
#https://gist.github.com/ijash/bf00167506337d918b3070a7ce57b1a7
Name=Open %f folder in VS Code
Name[id]= Buka folder $f dalam VS Code
Comment=Open current folder in Visual Studio Code with just a right click.
Comment[id]=Membuka folder ini dengan Visual Studio Code hanya dengan klik kanan.
Icon-Name=code
Selection=none;
Extensions=dir
#Quote=double
EscapeSpaces=true
Exec=/bin/sh -c "cd %P && code ."
Dependencies=code;
[Nemo Action]
#https://gist.github.com/ijash/bf00167506337d918b3070a7ce57b1a7
Name=Open %f folder in VS Code
Name[id]= Buka folder $f dalam VS Code
Comment=Open selected folder in Visual Studio Code with just a right click.
Comment[id]=Membuka folder yang dipilih dengan Visual Studio Code hanya dengan klik kanan.
Icon-Name=code
Selection=s
Extensions=dir
#Quote=double
EscapeSpaces=true
Exec=/bin/sh -c "cd %F && code ."
Dependencies=code;
@ijash
Copy link
Author

ijash commented Mar 19, 2019

copy to /usr/share/nemo/actions

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment