Definir margens de impressão no Textmate?

0

Estou usando o OS X 10.8.5 com o TextMate 2.0-beta.6. Quero imprimir um documento de texto, mas parece que não há margens (ou as margens são muito pequenas para o meu gosto):

EuvisiteioConfiguraçãodapáginadoTextmate,maselenãoparecefornecerconfiguraçõesrelacionadasàsmargens:

Como defino as margens de impressão para 0,5 ou 1 pol?

    
por jww 11.11.2014 / 21:46

1 resposta

1

Referência 18 Impressão sugere que não pode ser feito ...

To the amusement of some and the frustration of others, TextMate currently features only limited printing capabilities.

That means you can only use the document font with no syntax highlighting and no options except the standard printing options plus header and footer fields as shown below.

No entanto, pode ser feito ao imprimir em PDF.

TextMate Truques: uma automação para produzir PDFs

I made it possible to configure things like margins and fonts for the PDF with a YAML file. It doesn’t exist yet and the code will run fine without it, but let’s add one more shortcut for that. This time, we don’t need any code and we can just build a snippet. A snippet is a chunk of boilerplate code we can customize to our needs.

Click on that plus in the lower left of the Bundle Editor one more time and choose New Snippet this time. Give it a name like Configure PDF Builder and replace the examples with this code:

# Set margins below. These are in PDF points (72 per inch).
top_margin: ${1:72}
left_margin: ${2:72}
right_margin: ${3:72}
bottom_margin: ${4:72}
# Set font, size, and line spacing below.
font: ${5:Courier}
font_size: ${6:10}
spacing: ${7:15}

Leia o artigo completo para instruções completas.

    
por 11.11.2014 / 22:04