summaryrefslogtreecommitdiff
path: root/lisp
AgeCommit message (Collapse)Author
2014-02-17Give org-metadown a "C-c C-x" bindingKyle Meyer
2014-02-17Check for process before syncing mailKyle Meyer
2014-02-15Correct ido-everywhere initializationKyle Meyer
The function `ido-everywhere' should be called rather than setting the variable.
2014-02-15Set read functions for bogKyle Meyer
2014-02-15Move bog to separate init fileKyle Meyer
2014-02-15Add binding for bog-rename-staged-pdf-to-citekeyKyle Meyer
2014-02-12Change {forward,backward}-paragraph keybindingKyle Meyer
2014-02-12Add function to find PDF for TeX fileKyle Meyer
2014-02-12Remove unnecessary lambdas from yas hooksKyle Meyer
2014-02-12Fix `yas-reload-all' callKyle Meyer
This was not getting ran because "yasnippet", not "yas", should be passed to `eval-after-load'. But using `eval-after-load' here is pointless because `prog-mode-hook' will be called during initialization anwyway.
2014-02-12Require org-contacts instead of autoloadingKyle Meyer
Otherwise, completion is not available for in message mode.
2014-02-12Add find-file-other-window to projectile commanderKyle Meyer
2014-02-11Add keymap for window-related bindingsKyle Meyer
2014-02-11Use correct terminology in switch-frame-splitKyle Meyer
2014-02-11Add mail sync keybindingKyle Meyer
2014-02-11Move multiple cursors keymap outside of insert mapKyle Meyer
2014-02-11Add mc/edit-{beginnings,ends}-of-lines bindingsKyle Meyer
2014-02-11Put compile and recompile under external keymapKyle Meyer
2014-02-11Group keybindings in init-externalKyle Meyer
2014-02-10Restore window configuration after shell commandKyle Meyer
2014-02-10Swap python test and compile keybindingsKyle Meyer
I keep using the wrong one, so I must think it makes more sense this way.
2014-02-10Make `create-python-test-file` find file if existsKyle Meyer
Instead of raising an error if the file exist, just open file in other buffer.
2014-02-10Add `find-function' keybindingKyle Meyer
Learned about this function from http://article.gmane.org/gmane.emacs.orgmode/82237.
2014-02-10Move back to Firefox as default browserKyle Meyer
2014-02-08Add some Bog keybindings to OrgKyle Meyer
2014-02-07Enable set-goal-columnKyle Meyer
2014-02-07Widen first in LaTeX narrowing functionsKyle Meyer
This is consistent with behavior in `narrow-to-page' and `narrow-to-defun'.
2014-02-07Autoload vc-git-grepKyle Meyer
2014-02-07Use dired-omit-mode instead of dired-omit-files-pKyle Meyer
`dired-omit-files-p' is obsolete. Also, I should have been using `setq-default' to set `dired-omit-files-p' since it is buffer local, but this was changed to `setq' when I was reorganizing.
2014-02-07Load git-annex during initKyle Meyer
2014-02-05Advice BibTeX cleaning instead of using hookKyle Meyer
For some reason not obvious to me, adding `km/bibtex-use-title-case' to `bibtex-clean-entry-hook' results in `bibtex-key-in-head' returning nil instead of the citekey. Using advice fixes this.
2014-02-05Add function to convert BibTeX title to title caseKyle Meyer
2014-02-05Remove words from bibtex-autokey-titleword-ignoreKyle Meyer
These are uncommon first words, so having in them in a citekey should be informative enough.
2014-02-03Add compile keybindingKyle Meyer
2014-02-03Combine recompile advice and activationKyle Meyer
2014-02-03Set PDF command guess for diredKyle Meyer
2014-02-02Autoload org-contacts-template-nameKyle Meyer
2014-02-01Add note to Org NA stateKyle Meyer
2014-02-01Move some settings from general to editingKyle Meyer
2014-02-01Use prefix argument to choose py.test{,2} compileKyle Meyer
2014-01-31Enable narrow to pageKyle Meyer
2014-01-31Remove M-z unsetKyle Meyer
Originally 'M-z' was unset because I moved `zap-to-char' to 'C-z', but 'M-z' is now bound to autoloaded `zap-up-to-char'.
2014-01-30Widen after cloning an indirect bufferKyle Meyer
2014-01-29Change default reftex bibliographyKyle Meyer
Make it relative to working directory (no longer using one large BibTeX file for everything).
2014-01-29Fix LaTeX narrow function docKyle Meyer
2014-01-29Add LaTeX narrowing functionsKyle Meyer
2014-01-28Align and sort fields when clean bib entryKyle Meyer
2014-01-28Add ignored extensions for ido completionKyle Meyer
2014-01-28Set preferred extension order for ido completionKyle Meyer
2014-01-28Shuffle around init-idoKyle Meyer