i am trying to get the mobileorg work, but fail always
after i run org-mobile-push when i am editing an org-file with the name plan.org i.e., in the directory Dropbox/MobileOrg, only files like index.org, checksum are created, but plan.org is not copied, and in the automatically created index.org file, none link information about the plan.org is included.
I am setting the emacs and orgmode just the same with the homepage. did I forget some configuration?
Thanks
You need to set up your .emacs file something like in this video. If you don't have any files in org-directory and/or in org-agenda-files, nothing is copied.
In order to make org-mode automatically push these files up to the MobileOrg, first these files should be linked with aganda.
Related
So I use PHPStorm, and for CSS I use SASS that complies to CSS. I have questions mainly about workflow.
I have things setup (or so I thought) that when I deploy everything/one file, .sass .scss etc files WONT be uploaded. However they still do when I use my shortcut to upload.
How do I make it so I can use my shortcut to upload the main.css and not the .scss file(s) without having to manually go into my main.css files every time first? Even sync uploads the damned scss files so I dont know whats up.
1. You did the exclusions wrong: .sass will exclude just THAT file and not any other, e.g. abc.sass.
To exclude all .sass files you have to use *.sass (just as hint below that field says -- nothing more, nothing less).
2. No way (unfortunately) -- but sync will be working properly now (after you fix your #1).
Automatic upload should also do the job just fine (but you will have to tick Upload external changes option as well).
I'm using AUCTeX 11.87 along with emacs 24.3 for writing my LaTeX documents. This is working nicely with one exception: The parsing.
My document structure is as follows:
./
Master.tex
Chapter_1.tex
Chapter_2.tex
...
header/
header/header.tex
header/packages.tex
header/options.tex
...
Where Master.tex \inputs header.tex which in turn inputs all files in header/. Furthermore Master.tex includes the Chapter_N.tex files within the document environment.
Here comes the problem: AUCTeX does not generate the parse files (the ones in the auto folder) until I have actually opened the file. Meaning that until I have not opened and saved the header/packages.tex and header/header.tex files AUCTeX does not know about the loaded packages and thus their commands/environments.
An now the question: Can I force AUCTeX to (re)parse the whole source-tree (and then reload the style hooks for all open documents)?
If all files are in the same directory, or in subdirectories under it, open the master file and issue M-x TeX-auto-generate RET and as TeX file or directory insert the directory of the master file and as AUTO lisp directory the auto/ subdirectory of the previous directory.
For instance, if your master file is placed in ~/my-document/, insert ~/my-document/ at the first prompt and ~/my-document/auto at the second one (you can also use relative paths if you prefer them).
I want to use cscope in emacs. Due to my directory structure i only want to use files from certain subdirectories in the tree.
In the shell i create my cscope.files list (includes a listing of all the source files i want)
the i do:
cscope -q -R -b -i cscope.files
This will create the cscope.out file i want. Now i want to read this file into emacs to use it for source code parsing etc ...
So the question is:
How do i have emacs load it? It seems that all the options i get (ie M-x cscope-wahtever) are for creating a new cscope.out file.
Ok,
i guess i am answering my own question.
So the problem was not exactly with cscope.
First, in order to point cscope to the database file one set the initial directory:
M-x cscope-set-initial-directory
to where the cscope database is located.
However, it appears that the input file from which the database is constructed needs to have relative paths in it (or the initial directory need to be pointing to '/'). I had absolute paths in it and thus nothing was found after setting the initial directory to the source root.
I'm not sure how it happened, but calc no longer works. Whenever I try to start it, I get:
Autoloading failed to define function calc-dispatch
It was working fine last week and I am using the built-in calc, so I have no idea what changed to prevent it from working. I ran lgrep on a copy of the calc directory searching for calc-dispatch and it found calc-dispatch just fine. Could my .elc files have gotten corrupted?
When I tried to recompile them, I got stuff like:
calc-fin.el:29:1:Error: Required feature `calc' was not provided
The issue was that calc's default calc-settings-file is called calc.el by default. When I saved my customizations, the calc.el in my .emacs.d directory clobbered the calc.el in /usr/share/emacs/lisp/calc/ because I have .emacs.d in my load path. Transfering the contents of that file to my init.el and deleting it fixed the issue. I emailed the maintainer about the issue and received a very prompt and thurough response explaining the problem.
I have just run Doxygen from the command line and am unsure where it put it...
It doesn't show up in the directory I ran it from
Is there an easy way to find it?
From the Doxygen manual:
The default output directory is the directory in which doxygen is started. The root directory to which the output is written can be changed using the OUTPUT_DIRECTORY. The format specific directory within the output directory can be selected using the HTML_OUTPUT, RTF_OUTPUT, LATEX_OUTPUT, XML_OUTPUT, and MAN_OUTPUT tags of the configuration file. If the output directory does not exist, doxygen will try to create it for you (but it will not try to create a whole path recursively, like mkdir -p does).
If you are having some problems getting it to do what you want use doxywizard it makes writing the configuration file much easier.