emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Matthew Sauer <improv.philosophy@gmail.com>
To: Gary Oberbrunner <garyo@oberbrunner.com>
Cc: emacs-orgmode@gnu.org, Dan Davison <dandavison7@gmail.com>
Subject: Re: Re: Something like SETUPFILE, but in .emacs?
Date: Mon, 14 Feb 2011 09:14:49 -0600	[thread overview]
Message-ID: <AANLkTima5_ee5dNZ6NWMLG4FPQYjhFmT9h3rboxFYsUk@mail.gmail.com> (raw)
In-Reply-To: <AANLkTikrpOiZDkz-Bn-gPL1Dg5geje-KtyN7tqj0boBu@mail.gmail.com>


[-- Attachment #1.1: Type: text/plain, Size: 6095 bytes --]

Would this be the full list of variables?
Possible completions are:
org-export-allow-BIND                  org-export-author-info
org-export-babel-evaluate              org-export-blocks
org-export-blocks-postblock-hook       org-export-blocks-witheld
org-export-copy-to-kill-ring           org-export-creator-info
org-export-default-language            org-export-email-info
org-export-exclude-tags                org-export-headline-levels
org-export-highlight-first-table-line  org-export-html-coding-system
org-export-html-expand                 org-export-html-extension
org-export-html-footnote-format        org-export-html-footnotes-section
org-export-html-home/up-format         org-export-html-html-helper-timestamp
org-export-html-inline-image-extensions org-export-html-inline-images
org-export-html-link-home
 org-export-html-link-org-files-as-html
org-export-html-link-up                org-export-html-mathjax-options
org-export-html-mathjax-template       org-export-html-style
org-export-html-style-extra            org-export-html-style-include-default
org-export-html-style-include-scripts
org-export-html-table-align-individual-fields
org-export-html-table-tag
org-export-html-table-use-header-tags-for-first-column
org-export-html-tag-class-prefix       org-export-html-title-format
org-export-html-todo-kwd-class-prefix  org-export-html-toplevel-hlevel
org-export-html-use-infojs             org-export-html-validation-link
org-export-html-with-timestamp         org-export-html-xml-declaration
org-export-htmlize-css-font-prefix     org-export-htmlize-output-type
org-export-htmlized-org-css-url        org-export-interblocks
org-export-kill-product-buffer-when-displayed
org-export-language-setup
 org-export-latex-default-packages-alist
org-export-latex-packages-alist        org-export-mark-todo-in-toc
org-export-prefer-native-exporter-for-tables
org-export-preserve-breaks             org-export-remove-timestamps-from-toc
org-export-run-in-background           org-export-section-number-format
org-export-select-tags
org-export-show-temporary-export-buffer
org-export-skip-text-before-1st-heading org-export-table-data-tags
org-export-table-header-tags           org-export-table-remove-special-lines
org-export-table-row-tags              org-export-time-stamp-file
org-export-with-LaTeX-fragments        org-export-with-TeX-macros
org-export-with-archived-trees         org-export-with-drawers
org-export-with-emphasize              org-export-with-fixed-width
org-export-with-footnotes              org-export-with-priority
org-export-with-section-numbers        org-export-with-special-strings
org-export-with-sub-superscripts       org-export-with-tables
org-export-with-tags                   org-export-with-timestamps
org-export-with-toc                    org-export-with-todo-keywords


On Mon, Feb 14, 2011 at 9:07 AM, Matthew Sauer
<improv.philosophy@gmail.com>wrote:

> Question, would something like the following work?
>
> For .emacs
>
> ---start of .emacs ----------snip---------------snip-----------snip-------------------
>
>  (setq load-path (append '("/home/usr/emacs/load/") load-path))
>  (setq load-path (append '("/home/usr/emacs") load-path))
>
>  (load "export-setup"         nil t )  ; Org-Export settings
>
> <rest of .emacs code here
>
> ---end   of .emacs ----------snip---------------snip-----------snip-------------------
>
> --- Start of export-setup.el ------snip-------snip-------------snip-----------
>
> (setq  . . . . . .
>
>  . . . . . Set the variables you want here but they can be overrode in
> specific files with specific buffer overrides #+STARTUP
> --------------end Export-setup.el
>
>
> Got the idea from http://www.dotemacs.de/recovery.html
>
>
> Matthew S
>
>
>
> On Sun, Feb 13, 2011 at 8:08 PM, Gary Oberbrunner <garyo@oberbrunner.com>wrote:
>
>> Yes, that's definitely what I'm looking for.  If I get some time I may
>> write a function to allow autoloading a setupfile-syntax version (just
>> for consistency/simplicity), but given shortness of time I'll probably
>> just track down the vars and set them in my .emacs. :-)
>>
>> thanks!
>>
>> On Sun, Feb 13, 2011 at 4:16 PM, Dan Davison <dandavison7@gmail.com>
>> wrote:
>> > Gary Oberbrunner <garyo@oberbrunner.com> writes:
>> >
>> >> On Sun, Feb 13, 2011 at 10:53 AM, Darlan Cavalcante Moreira
>> >> <darcamo@gmail.com> wrote:
>> >>> You can use auto-insert for this.
>> >>
>> >> I guess I'm really not using org-mode in the way it was intended --
>> >> everyone thinks I should put these values into each one of my org-mode
>> >> files.
>> >
>> > Hi Gary,
>> >
>> > What did you think of the suggestion I made?
>> >
>> > http://article.gmane.org/gmane.emacs.orgmode/37408
>> >
>> > I believe it pointed you in the right direction. You need to (a) find
>> > the variables that control the export behavior in question, and (b) set
>> > those variables in your .emacs. My reply gave a source of many of the
>> > relevant variables, i.e. the default value of the variable
>> > `org-export-plist-vars'. An example of one of those variables is
>> >
>> > [...]
>> >
>> >> As an example, I *never* want to export the creator line.
>> >
>> > `org-export-creator-info'.
>> >
>> > Let us know if you have trouble finding the appropriate variable for
>> > something, or if setting the variables isn't behaving the way you want.
>> >
>> > Dan
>> >
>> >
>> >>  But most of the comments on this list seem to say I should
>> >> modify my .org files (at least to include #+SETUPFILE), so I guess
>> >> I'll consider that as standard practice.
>> >>
>> >> Would anyone be interested if I were to create a way to specify export
>> >> values in a global file somewhere (~/.org-site-defaults or something)
>> >> in the same syntax as SETUPFILE (#+kwd: value) that would set up all
>> >> the defaults for _every_ org file?
>> >
>>
>>
>>
>> --
>> -- Gary
>>
>> _______________________________________________
>> Emacs-orgmode mailing list
>> Please use `Reply All' to send replies to the list.
>> Emacs-orgmode@gnu.org
>> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>>
>
>

[-- Attachment #1.2: Type: text/html, Size: 8675 bytes --]

[-- Attachment #2: Type: text/plain, Size: 201 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

  reply	other threads:[~2011-02-14 15:14 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-02-10 21:40 Something like SETUPFILE, but in .emacs? Gary Oberbrunner
2011-02-10 21:59 ` Matthew Sauer
     [not found] ` <13311.1297374866@alphaville>
2011-02-10 22:39   ` Gary Oberbrunner
2011-02-10 23:17 ` Dan Davison
2011-02-12 12:15 ` Bastien
2011-02-13 15:53 ` Darlan Cavalcante Moreira
2011-02-13 18:57   ` Gary Oberbrunner
2011-02-13 20:40     ` Thomas S. Dye
2011-02-13 21:16     ` Dan Davison
2011-02-14  0:08       ` Bastien
2011-02-14  2:08       ` Gary Oberbrunner
2011-02-14 15:07         ` Matthew Sauer
2011-02-14 15:14           ` Matthew Sauer [this message]
2011-02-14 20:48             ` Gary Oberbrunner
     [not found]     ` <25508.1297658851@alphaville>
     [not found]       ` <AANLkTikhjWt=O6aes9P7eQWHMu5GY7_Q7Wp1omzNE__K@mail.gmail.com>
2011-02-14 20:49         ` Fwd: " Gary Oberbrunner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=AANLkTima5_ee5dNZ6NWMLG4FPQYjhFmT9h3rboxFYsUk@mail.gmail.com \
    --to=improv.philosophy@gmail.com \
    --cc=dandavison7@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    --cc=garyo@oberbrunner.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).