Sublime Forum

Printing from sublime

#67

Ok, so I opened the settings file and removed the “//” at the beginning of the line so that it is not commented out, and I changed the name “ANDYCOMPAQ” to my computer’s name. Then I quit and restarted ST, but it still gave the same error message as before when it tried to load the plugin.

Then I also tried editing the two lines in quickprint.py to what you wrote. Now something different happens! ST starts without an error and appears to load the plugin successfully, but now when I try to use the QuickPrint feature, I get the following error:

[quote]Traceback (most recent call last):
File “./sublime_plugin.py”, line 339, in run_
File “./QuickPrint.py”, line 132, in run
File “/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/subprocess.py”, line 470, in call
return Popen(*popenargs, **kwargs).wait()
File “/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/subprocess.py”, line 623, in init
errread, errwrite)
File “/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/subprocess.py”, line 1141, in _execute_child
raise child_exception
OSError: [Errno 2] No such file or directory
[/quote]

I should note that probably unlike most ST users, I’m a biologist, not a computer programmer (I use ST for basic DNA sequence analysis/cleanup), so I appreciate your easy-to-follow instructions. :smile:

0 Likes

#68

I have now also tried your updated version that uses the socket command. Now it loads the plugin without errors, but when I try to print, it still gives the “No such file or directory” error I posted a moment ago.

0 Likes

#69

Thanks for sticking with me!

Can you add as line 131:

print(vw_filename)

  • it needs to be aligned with the subprocess statement that follows it.

When you exit and try to print again, when viewing the Console it should show the name of the file it is trying to print.

0 Likes

#70

It might require ‘lpr’ rather than ‘lp’, at line 132:

subprocess.call("lpr " + vw_filename)

0 Likes

#71

I added the print line (keeping the indentation same as the subprocess line) and changed lp to lpr in line 132, but no change in the error message. Just for clarity, that section now looks like this:

and the error when I try to print still looks like this:

0 Likes

#72

Sorry, perhaps I gave the wrong line number; the print statement should be in the second section:

elif PLATFORM == "osx": # lp -d <queue name> <name of document> # lp <name of document> will send to default printer(?) if QUEUE is not False: subprocess.call("lp -d " + QUEUE + " " + vw_filename) else: print(vw_filename) subprocess.call("lp " + vw_filename)

0 Likes

#73

Ok, now it puts the filename:

results.txt is the name of the file I am trying to print.

0 Likes

#74

It looks okay?! Is

/var/folders/rv/khlfpt5d15q40578f1sjz3f00000gp/T/results.txt

a valid osx path? Can you check if this file exists - I assume it should!

Otherwise, you could try adding the setting:

"queue": “yourprintername”,

to the QuickPrint.sublime-settings file, so that it tries to print to the named printer (rather than a default printer).

Thanks again for persisting with me…

0 Likes

#75

Yes, the file exists at that path (and I opened it and verified that it’s my file). I tried adding that line to the settings file, no change. Now I really need to go start the experiment I meant to start a few hours ago. :smile: I’ll check back later if you have more suggestions.

0 Likes

#76

This is also an experiment :wink:

No worries, and thanks again. For* some time later*:

Did your printer name contain spaces? This may be another issue.
I’ve updated my GitHub to use the folder /tmp/ for osx. If this doesn’t work then I assume that lp (or lpr) are not configured to the default printer by default, or perhaps there is some security setting(s) preventing access to the temp folder.

I’m hoping some osx-legend might contribute to our endeavours :smiley:

Added: The printer settings may need to be adjusted to accept TEXT input.
Finally: If/when you get a chance can you type lp pathtosometextfile.txt in Terminal to see if it prints.

0 Likes

#77

I do enjoy a good puzzle. :mrgreen:

My printer name does not contain spaces. I’ve re-downloaded the updated zip from github a few minutes ago and put it on my laptop at home (OSX 10.8.2), in case there was something weird about my work computer/printer setup, but the same “No such file or directory” error also occurs on my laptop.

I’m not sure what this means: “The printer settings may need to be adjusted to accept TEXT input.” I don’t see any options like that in my printer settings.

I am able to successfully print the file stuff.txt by typing “lp stuff.txt” in Terminal.

0 Likes

#78

I am at a loss…

Perhaps I will include an email client: it will post the file to me in an email, I’ll print it out and post it to you :smiley:. It means, though, there will be a slight delay between each print.

Hopefully someone else might offer suggestions :wink:

thanks again, Andy.

0 Likes

#79

Could try one last time :wink: . The current version saves the text file in the current location, just adding a .txt extension. This will at least eliminate the location of the file as the cause of the problem. Andy.

0 Likes

#80

Well, now it makes a different error, so that’s fun… I tried it first with an unsaved file, then saved the file as stuff.txt and tried again.

I’ll just use the Print to Html package instead. Opening a browser to print DNA sequences seems like overkill, but it works okay. Thanks for the good times; it’s nice to do some “experiments” that don’t involve pipetting clear liquids between various tiny tubes hundreds of times.

0 Likes

#81

@bbarrill
No worries; thanks for your time.

I don’t like to give up, but there’s nothing else I can do at the moment without input from others.

Andy.

0 Likes

#82

I’ve made another attempt by adding

#!/usr/bin/env python # and.. /usr/bin/lp

if anyone is will to give it a go in osx :smile:

0 Likes

#83

Please can someone with OSX test my QuickPrint feature briefly and let me know if it succeeds. Andy.

0 Likes

#84

Another vote for print support.

Yikes.

0 Likes

#85

I tried Sublime for a month, decided I liked it, paid for it… then needed to print something.

Surprise! This application does not print.

This sours the deal but doesn’t kill it. Sublime Text 2 is still an excellent addition to my library, but… wow. That’s a pretty basic feature. I expect I am among the masses taking that for granted.

Please consider making this a priority.

Thanks.

0 Likes

#86

I don’t know if native support for printing will ever be added to Sublime Text. Maybe in version 3 … But for the rare occasions I need it, this plugin works well enough: SublimePrint. I first created it as a quick hack last april. It was then substantially extended by Kai Ellinger a few months ago, and again cleaned up by me just now. It has been submitted to package control, but you can get it directly from github.com/svenax/SublimePrint until gets is added. Give it a shot.

0 Likes