iPubSoft PDF Creator - Free for 5 jpegs. If you have more than 5 then create multiple pdfs and combine them using below software.
Combine PDFs - Free for first 1000 pages.
Combine PDFs - Free for first 1000 pages.
import sublime, sublime_plugin, subprocess, os
class OpenInOpenOfficeCommand(sublime_plugin.TextCommand):
def run(self, edit):
if self.view.file_name():
os.chdir("/Applications/OpenOffice.app/Contents/program")
subprocess.Popen(["./soffice", self.view.file_name()])
def is_visible(self):
return self.view.file_name() and (self.view.file_name()[-4:] == ".csv")
{ "command": "open_in_open_office", "caption": "Open in Open Office" }references
http://stackoverflow.com/questions/16147073/adding-custom-menus-in-sublime-text http://stackoverflow.com/questions/636561/how-can-i-run-an-external-command-asynchronously-from-python http://stackoverflow.com/questions/431684/how-do-i-cd-in-python https://docs.python.org/2/library/subprocess.html