Ace jump mode to C-j

This commit is contained in:
Ivan Malison 2014-11-23 03:10:43 -08:00
parent 0e8a2d65bf
commit d02cbaa2dc
2 changed files with 7 additions and 5 deletions

1
.gitignore vendored
View File

@ -20,3 +20,4 @@ ido.last
session.* session.*
var var
skewer-cache skewer-cache
.org-id-locations

View File

@ -309,8 +309,7 @@ buffer is not visiting a file."
:config :config
(progn (progn
(setq ace-jump-mode-scope 'window)) (setq ace-jump-mode-scope 'window))
:bind (("C-;" . ace-jump-mode) :bind (("C-j" . ace-jump-mode)))
("C-c j" . ace-jump-mode)))
(use-package flycheck (use-package flycheck
:ensure t :ensure t
@ -422,8 +421,11 @@ buffer is not visiting a file."
:ensure t :ensure t
:commands (org-mode org) :commands (org-mode org)
:mode ("\\.org\\'" . org-mode) :mode ("\\.org\\'" . org-mode)
:config (unbind-key "C-j" org-mode-map)
:init :init
(progn (progn
(if (and (boundp 'file-notify--library) file-notify--library)
(use-package org-mobile-sync :ensure t :config (org-mobile-sync-mode 1)))
(setq org-directory "~/Dropbox/org") (setq org-directory "~/Dropbox/org")
(setq org-mobile-inbox-for-pull "~/Dropbox/org/flagged.org") (setq org-mobile-inbox-for-pull "~/Dropbox/org/flagged.org")
(setq org-mobile-directory "~/Dropbox/Apps/MobileOrg") (setq org-mobile-directory "~/Dropbox/Apps/MobileOrg")
@ -433,8 +435,7 @@ buffer is not visiting a file."
(guide-key/add-local-highlight-command-regexp "org-")) (guide-key/add-local-highlight-command-regexp "org-"))
(add-hook 'org-mode-hook 'guide-key/my-hook-function-for-org-mode) (add-hook 'org-mode-hook 'guide-key/my-hook-function-for-org-mode)
(add-hook 'org-mode-hook (lambda () (linum-mode 0))) (add-hook 'org-mode-hook (lambda () (linum-mode 0)))
(define-key mode-specific-map [?a] 'org-agenda) (define-key mode-specific-map [?a] 'org-agenda)))
(local-set-key (kbd "C-j") 'ace-jump-mode)))
(use-package epg (use-package epg
:ensure t :ensure t