Skip to content

Commit

Permalink
Configurable path to Mono executable.
Browse files Browse the repository at this point in the history
  • Loading branch information
pabu committed Jul 20, 2012
1 parent 29fceb4 commit 960aed8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion completesharp.py
Expand Up @@ -124,7 +124,7 @@ def get_cmd(self):
cmd = ""
q = "\""
if sublime.platform() != "windows":
cmd = "mono "
cmd = self.get_setting("completesharp_mono_path", "mono") + " "
q = "\'"
cmd = "%sCompleteSharp.exe %s%s%s" % (cmd, q, ";;--;;".join(extra), q)
return cmd
Expand Down

0 comments on commit 960aed8

Please sign in to comment.