The Helm Classes Manual

Table of Contents

Next:   [Contents][Index]

The Helm Classes Manual


Next: , Previous: , Up: Top   [Contents][Index]

1 Overview of Helm Classes

helm-figures/helm-classes

Next: , Previous: , Up: Top   [Contents][Index]

2 class: helm-source

Main interface to define helm sources.

helm-figures/helm-source
parents
children

This class has following slots.

init

name

action

action-transformer

after-init-hook

allow-dups

before-init-hook

candidate-number-limit

candidate-transformer

candidates

cleanup

coerce

delayed

display-to-real

filter-one-by-one

filtered-candidate-transformer

follow

follow-delay

fuzzy-match

group

header-line

header-name

help-message

history

keymap

marked-with-props

match

match-on-real

match-part

mode-line

multiline

multimatch

must-match

nohighlight

nomark

pattern-transformer

persistent-action

persistent-action-if

persistent-help

real-to-display

redisplay

requires-pattern

resume

update

volatile

Specialized Methods:

helm--setup-source:

((_source helm-source)) :before ((source helm-source))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

3 class: helm-source-sync

Use this class to make helm sources using a list of candidates. This list should be given as a normal list, a variable handling a list or a function returning a list. Matching is done basically with string-match against each candidate.

helm-figures/helm-source-sync
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

candidates

match-dynamic

match-strict

migemo

Specialized Methods:

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((source helm-source-sync))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

4 class: helm-source-async

Use this class to define a helm source calling an external process. The external process is called typically in a start-process call to be asynchronous.

Note that using multiples asynchronous sources is not fully working, expect weird behavior if you try this.

The :candidates slot is not allowed even if described because this class inherit from helm-source.

helm-figures/helm-source-async
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

candidates-process

multimatch

Specialized Methods:

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((source helm-source-async))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

5 class: helm-source-in-buffer

Use this source to make helm sources storing candidates inside a buffer.

The buffer storing candidates is generated by helm-candidate-buffer function and all search are done in this buffer, results are transfered to the helm-buffer when done. Contrarily to helm-source-sync candidates are matched using a function like re-search-forward (see below documentation of :search slot) which makes the search much faster than matching candidates one by one. If you want to add search functions to your sources, don’t use :match which will raise an error, but :search. See helm-candidates-in-buffer for more infos.

helm-figures/helm-source-in-buffer
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

init

candidates

data

get-line

match

migemo

search

search-strict

volatile

Specialized Methods:

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((source helm-source-in-buffer))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

6 class: helm-source-dummy

helm-figures/helm-source-dummy
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

accept-empty

candidates

filtered-candidate-transformer

match

multimatch

volatile

Specialized Methods:

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((source helm-source-dummy))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

7 class: helm-source-in-file

The contents of the FILE will be used as candidates in buffer.

helm-figures/helm-source-in-file
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

init

candidates-file

get-line

Specialized Methods:

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((source helm-source-in-buffer))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

8 class: helm-type-file

A class to define helm type file.

helm-figures/helm-type-file
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

Specialized Methods:

helm-source-get-action-from-type:

((object helm-type-file))

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((_source helm-type-file)) :before ((source helm-type-file))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

9 class: helm-type-bookmark

A class to define type bookmarks.

helm-figures/helm-type-bookmark
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

Specialized Methods:

helm-source-get-action-from-type:

((object helm-type-bookmark))

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((_source helm-type-bookmark)) :before ((source helm-type-bookmark))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

10 class: helm-type-buffer

A class to define type buffer.

helm-figures/helm-type-buffer
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

Specialized Methods:

helm-source-get-action-from-type:

((object helm-type-buffer))

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((_source helm-type-buffer)) :before ((source helm-type-buffer))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

11 class: helm-type-function

A class to define helm type function.

helm-figures/helm-type-function
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

Specialized Methods:

helm-source-get-action-from-type:

((object helm-type-function))

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((_source helm-type-function)) :before ((source helm-type-function))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

12 class: helm-type-command

A class to define helm type command.

helm-figures/helm-type-command
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

Specialized Methods:

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((_source helm-type-command)) :before ((source helm-type-command))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

13 class: helm-type-timers

A class to define helm type timers.

helm-figures/helm-type-timers
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

Specialized Methods:

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((_source helm-type-timers)) :before ((source helm-type-timers))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

14 class: helm-files-dired-source

helm-figures/helm-files-dired-source
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

candidates

match-dynamic

match-strict

migemo

Specialized Methods:

helm-source-get-action-from-type:

((object helm-type-file))

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((source helm-source-sync)) ((_source helm-type-file)) :before ((source helm-type-file))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

15 class: helm-source-session-class

helm-figures/helm-source-session-class
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

action

candidates

help-message

keymap

Specialized Methods:

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((source helm-source-sync))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

16 class: helm-mac-spotlight-source

helm-figures/helm-mac-spotlight-source
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

candidates-process

multimatch

requires-pattern

Specialized Methods:

helm-source-get-action-from-type:

((object helm-type-file))

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((source helm-source-async)) ((_source helm-type-file)) :before ((source helm-type-file))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

17 class: helm-source-basic-bookmarks

helm-figures/helm-source-basic-bookmarks
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

init

candidates

data

filtered-candidate-transformer

get-line

match

migemo

search

search-strict

volatile

Specialized Methods:

helm-source-get-action-from-type:

((object helm-type-bookmark))

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((source helm-source-in-buffer)) ((_source helm-type-bookmark)) :before ((source helm-type-bookmark))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

18 class: helm-source-filtered-bookmarks

helm-figures/helm-source-filtered-bookmarks
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

init

candidates

data

filtered-candidate-transformer

get-line

match

migemo

search

search-strict

volatile

Specialized Methods:

helm-source-get-action-from-type:

((object helm-type-bookmark))

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((source helm-source-in-buffer)) ((_source helm-type-bookmark)) :before ((source helm-type-bookmark))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

19 class: helm-bookmark-override-inheritor

helm-figures/helm-bookmark-override-inheritor
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

Specialized Methods:

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((source helm-bookmark-override-inheritor))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

20 class: helm-bookmark-find-files-class

helm-figures/helm-bookmark-find-files-class
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

init

candidates

data

filtered-candidate-transformer

get-line

match

migemo

search

search-strict

volatile

Specialized Methods:

helm-source-get-action-from-type:

((object helm-type-bookmark))

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((source helm-source-in-buffer)) ((_source helm-type-bookmark)) :before ((source helm-type-bookmark)) ((source helm-bookmark-override-inheritor))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

21 class: helm-source-buffers

helm-figures/helm-source-buffers
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

init

buffer-list

candidates

help-message

keymap

match

match-dynamic

match-strict

migemo

multimatch

nohighlight

persistent-action

resume

volatile

Specialized Methods:

helm-source-get-action-from-type:

((object helm-type-buffer))

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((source helm-source-sync)) ((_source helm-type-buffer)) :before ((source helm-type-buffer))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

22 class: helm-M-x-class

helm-figures/helm-M-x-class
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

candidates

filtered-candidate-transformer

help-message

keymap

match-dynamic

match-strict

migemo

must-match

nomark

persistent-help

Specialized Methods:

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((source helm-source-sync)) ((_source helm-type-command)) :before ((source helm-type-command))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

23 class: helm-absolute-time-timers-class

helm-figures/helm-absolute-time-timers-class
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

allow-dups

candidate-transformer

candidates

match-dynamic

match-strict

migemo

Specialized Methods:

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((source helm-source-sync)) ((_source helm-type-timers)) :before ((source helm-type-timers))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

24 class: helm-idle-time-timers-class

helm-figures/helm-idle-time-timers-class
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

allow-dups

candidate-transformer

candidates

match-dynamic

match-strict

migemo

Specialized Methods:

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((source helm-source-sync)) ((_source helm-type-timers)) :before ((source helm-type-timers))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

25 class: helm-list-el-package-source

helm-figures/helm-list-el-package-source
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

init

action

action-transformer

candidate-number-limit

filtered-candidate-transformer

get-line

group

help-message

keymap

update

Specialized Methods:

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((source helm-source-in-buffer))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

26 class: helm-epa

Allow building helm sources for GPG keys.

helm-figures/helm-epa
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

init

candidates

keymap

mode-line

Specialized Methods:

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((source helm-source-sync))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

27 class: helm-esh-source

Helm class to define source for Eshell completion.

helm-figures/helm-esh-source
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

init

action

candidates

filtered-candidate-transformer

nohighlight

persistent-action

Specialized Methods:

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((source helm-source-sync))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

28 class: helm-eshell-history-source

Helm class to define source for Eshell history.

helm-figures/helm-eshell-history-source
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

init

action

candidate-number-limit

candidates

keymap

multiline

nomark

Specialized Methods:

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((source helm-source-sync))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

29 class: helm-fd-class

helm-figures/helm-fd-class
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

action

candidate-number-limit

candidates-process

filtered-candidate-transformer

help-message

keymap

nohighlight

requires-pattern

Specialized Methods:

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((source helm-source-async))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

30 class: helm-source-ffiles

helm-figures/helm-source-ffiles
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

init

action

action-transformer

after-init-hook

before-init-hook

candidate-number-limit

candidates

cleanup

filtered-candidate-transformer

group

header-name

help-message

keymap

match-on-real

migemo

mode-line

nohighlight

persistent-action-if

persistent-help

update

volatile

Specialized Methods:

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((source helm-source-sync))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

31 class: helm-browse-project-override-inheritor

helm-figures/helm-browse-project-override-inheritor
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

Specialized Methods:

helm-source-get-action-from-type:

((object helm-type-file))

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((_source helm-type-file)) :before ((source helm-type-file)) :after ((source helm-browse-project-override-inheritor))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

32 class: helm-browse-project-source

Class to define a source in helm-browse-project handling non VC handled directories.

helm-figures/helm-browse-project-source
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

init

candidates

data

filter-one-by-one

get-line

match

match-part

migemo

root-dir

search

search-strict

volatile

Specialized Methods:

helm-source-get-action-from-type:

((object helm-type-file))

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((source helm-source-in-buffer)) ((_source helm-type-file)) :before ((source helm-type-file)) :after ((source helm-browse-project-override-inheritor))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

33 class: helm-file-cache

helm-figures/helm-file-cache
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

init

candidates

data

get-line

match

migemo

search

search-strict

volatile

Specialized Methods:

helm-source-get-action-from-type:

((object helm-type-file))

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((source helm-source-in-buffer)) ((_source helm-type-file)) :before ((source helm-type-file))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

34 class: helm-recentf-source

helm-figures/helm-recentf-source
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

init

candidates

match-dynamic

match-part

match-strict

migemo

pattern-transformer

persistent-action

Specialized Methods:

helm-source-get-action-from-type:

((object helm-type-file))

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((source helm-source-sync)) ((_source helm-type-file)) :before ((source helm-type-file)) :after ((source helm-recentf-source))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

35 class: helm-files-in-current-dir-source

helm-figures/helm-files-in-current-dir-source
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

candidates

fuzzy-match

match-dynamic

match-part

match-strict

migemo

pattern-transformer

Specialized Methods:

helm-source-get-action-from-type:

((object helm-type-file))

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((source helm-source-sync)) ((_source helm-type-file)) :before ((source helm-type-file))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

36 class: helm-grep-class

helm-figures/helm-grep-class
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

action

after-init-hook

backend

before-init-hook

candidate-number-limit

candidates-process

filtered-candidate-transformer

group

help-message

history

keymap

nohighlight

nomark

pcre

persistent-action

persistent-help

requires-pattern

Specialized Methods:

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((source helm-source-async)) ((source helm-grep-class))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

37 class: helm-grep-ag-class

helm-figures/helm-grep-ag-class
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

action

candidate-number-limit

filtered-candidate-transformer

group

help-message

history

keymap

nohighlight

nomark

pcre

persistent-action

persistent-help

requires-pattern

Specialized Methods:

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((source helm-source-async)) ((source helm-grep-ag-class))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

38 class: helm-gid-source

helm-figures/helm-gid-source
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

action

candidate-number-limit

candidates-process

db-dir

filtered-candidate-transformer

header-name

help-message

history

nohighlight

persistent-action

requires-pattern

Specialized Methods:

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((source helm-source-async))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

39 class: helm-imenu-source

helm-figures/helm-imenu-source
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

action

candidate-transformer

candidates

group

help-message

keymap

nomark

persistent-action

persistent-help

Specialized Methods:

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((source helm-source-sync))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

40 class: helm-info-source

helm-figures/helm-info-source
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

init

action

display-to-real

get-line

info-file

Specialized Methods:

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((source helm-source-in-buffer))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

41 class: helm-locate-override-inheritor

helm-figures/helm-locate-override-inheritor
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

Specialized Methods:

helm-source-get-action-from-type:

((object helm-type-file))

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((_source helm-type-file)) :before ((source helm-type-file)) :after ((source helm-locate-override-inheritor))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

42 class: helm-locate-source

helm-figures/helm-locate-source
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

init

candidate-number-limit

candidates-process

group

history

multimatch

persistent-action

redisplay

requires-pattern

Specialized Methods:

helm-source-get-action-from-type:

((object helm-type-file))

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((source helm-source-async)) ((_source helm-type-file)) :before ((source helm-type-file)) :after ((source helm-locate-override-inheritor))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

43 class: helm-locate-subdirs-source

helm-figures/helm-locate-subdirs-source
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

basedir

data

group

subdir

Specialized Methods:

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((source helm-source-in-buffer))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

44 class: helm-moccur-class

helm-figures/helm-moccur-class
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

buffer-name

moccur-buffers

Specialized Methods:

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((source helm-source-in-buffer))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

45 class: helm-semantic-source

helm-figures/helm-semantic-source
parents
children

The following are some interesting slots of this class. Note that not all slots are shown here.

init

action

get-line

help-message

keymap

persistent-action

persistent-help

Specialized Methods:

helm--setup-source:

((_source helm-source)) :before ((source helm-source)) ((source helm-source-in-buffer))

helm-setup-user-source:

((_source helm-source))


Next: , Previous: , Up: Top   [Contents][Index]

46 Main Index


Next: , Previous: , Up: Top   [Contents][Index]

47 Key Index


Next: , Previous: , Up: Top   [Contents][Index]

48 Command and Function Index


Next: , Previous: , Up: Top   [Contents][Index]

49 Variable Index

This is not a complete index of variables and faces, only the ones that are mentioned in the manual. For a more complete list, use M-x org-customize and then click yourself through the tree.


Previous: , Up: Top   [Contents][Index]

50 Class Index

Jump to:   H  
Index Entry  Section

H
helm-absolute-time-timers-class: class helm-source-sync
helm-absolute-time-timers-class: class helm-type-timers
helm-absolute-time-timers-class: class helm-absolute-time-timers-class
helm-bookmark-find-files-class: class helm-source-filtered-bookmarks
helm-bookmark-find-files-class: class helm-bookmark-override-inheritor
helm-bookmark-find-files-class: class helm-bookmark-find-files-class
helm-bookmark-override-inheritor: class helm-source
helm-bookmark-override-inheritor: class helm-bookmark-override-inheritor
helm-bookmark-override-inheritor: class helm-bookmark-find-files-class
helm-browse-project-override-inheritor: class helm-type-file
helm-browse-project-override-inheritor: class helm-browse-project-override-inheritor
helm-browse-project-override-inheritor: class helm-browse-project-source
helm-browse-project-source: class helm-source-in-buffer
helm-browse-project-source: class helm-browse-project-override-inheritor
helm-browse-project-source: class helm-browse-project-source
helm-epa: class helm-source-sync
helm-epa: class helm-epa
helm-esh-source: class helm-source-sync
helm-esh-source: class helm-esh-source
helm-eshell-history-source: class helm-source-sync
helm-eshell-history-source: class helm-eshell-history-source
helm-fd-class: class helm-source-async
helm-fd-class: class helm-fd-class
helm-file-cache: class helm-source-in-buffer
helm-file-cache: class helm-type-file
helm-file-cache: class helm-file-cache
helm-files-dired-source: class helm-source-sync
helm-files-dired-source: class helm-type-file
helm-files-dired-source: class helm-files-dired-source
helm-files-in-current-dir-source: class helm-source-sync
helm-files-in-current-dir-source: class helm-type-file
helm-files-in-current-dir-source: class helm-files-in-current-dir-source
helm-gid-source: class helm-source-async
helm-gid-source: class helm-gid-source
helm-grep-ag-class: class helm-source-async
helm-grep-ag-class: class helm-grep-ag-class
helm-grep-class: class helm-source-async
helm-grep-class: class helm-grep-class
helm-idle-time-timers-class: class helm-source-sync
helm-idle-time-timers-class: class helm-type-timers
helm-idle-time-timers-class: class helm-idle-time-timers-class
helm-imenu-source: class helm-source-sync
helm-imenu-source: class helm-imenu-source
helm-info-source: class helm-source-in-buffer
helm-info-source: class helm-info-source
helm-list-el-package-source: class helm-source-in-buffer
helm-list-el-package-source: class helm-list-el-package-source
helm-locate-override-inheritor: class helm-type-file
helm-locate-override-inheritor: class helm-locate-override-inheritor
helm-locate-override-inheritor: class helm-locate-source
helm-locate-source: class helm-source-async
helm-locate-source: class helm-locate-override-inheritor
helm-locate-source: class helm-locate-source
helm-locate-subdirs-source: class helm-source-in-buffer
helm-locate-subdirs-source: class helm-locate-subdirs-source
helm-M-x-class: class helm-source-sync
helm-M-x-class: class helm-type-command
helm-M-x-class: class helm-M-x-class
helm-mac-spotlight-source: class helm-source-async
helm-mac-spotlight-source: class helm-type-file
helm-mac-spotlight-source: class helm-mac-spotlight-source
helm-moccur-class: class helm-source-in-buffer
helm-moccur-class: class helm-moccur-class
helm-recentf-source: class helm-source-sync
helm-recentf-source: class helm-type-file
helm-recentf-source: class helm-recentf-source
helm-semantic-source: class helm-source-in-buffer
helm-semantic-source: class helm-semantic-source
helm-source: class helm-source
helm-source: class helm-source-sync
helm-source: class helm-source-async
helm-source: class helm-source-in-buffer
helm-source: class helm-source-dummy
helm-source: class helm-type-file
helm-source: class helm-type-bookmark
helm-source: class helm-type-buffer
helm-source: class helm-type-function
helm-source: class helm-type-command
helm-source: class helm-type-timers
helm-source: class helm-bookmark-override-inheritor
helm-source-async: class helm-source
helm-source-async: class helm-source-async
helm-source-async: class helm-mac-spotlight-source
helm-source-async: class helm-fd-class
helm-source-async: class helm-grep-class
helm-source-async: class helm-grep-ag-class
helm-source-async: class helm-gid-source
helm-source-async: class helm-locate-source
helm-source-basic-bookmarks: class helm-source-in-buffer
helm-source-basic-bookmarks: class helm-type-bookmark
helm-source-basic-bookmarks: class helm-source-basic-bookmarks
helm-source-buffers: class helm-source-sync
helm-source-buffers: class helm-type-buffer
helm-source-buffers: class helm-source-buffers
helm-source-dummy: class helm-source
helm-source-dummy: class helm-source-dummy
helm-source-ffiles: class helm-source-sync
helm-source-ffiles: class helm-source-ffiles
helm-source-filtered-bookmarks: class helm-source-in-buffer
helm-source-filtered-bookmarks: class helm-type-bookmark
helm-source-filtered-bookmarks: class helm-source-filtered-bookmarks
helm-source-filtered-bookmarks: class helm-bookmark-find-files-class
helm-source-in-buffer: class helm-source
helm-source-in-buffer: class helm-source-in-buffer
helm-source-in-buffer: class helm-source-in-file
helm-source-in-buffer: class helm-source-basic-bookmarks
helm-source-in-buffer: class helm-source-filtered-bookmarks
helm-source-in-buffer: class helm-list-el-package-source
helm-source-in-buffer: class helm-browse-project-source
helm-source-in-buffer: class helm-file-cache
helm-source-in-buffer: class helm-info-source
helm-source-in-buffer: class helm-locate-subdirs-source
helm-source-in-buffer: class helm-moccur-class
helm-source-in-buffer: class helm-semantic-source
helm-source-in-file: class helm-source-in-buffer
helm-source-in-file: class helm-source-in-file
helm-source-session-class: class helm-source-sync
helm-source-session-class: class helm-source-session-class
helm-source-sync: class helm-source
helm-source-sync: class helm-source-sync
helm-source-sync: class helm-files-dired-source
helm-source-sync: class helm-source-session-class
helm-source-sync: class helm-source-buffers
helm-source-sync: class helm-M-x-class
helm-source-sync: class helm-absolute-time-timers-class
helm-source-sync: class helm-idle-time-timers-class
helm-source-sync: class helm-epa
helm-source-sync: class helm-esh-source
helm-source-sync: class helm-eshell-history-source
helm-source-sync: class helm-source-ffiles
helm-source-sync: class helm-recentf-source
helm-source-sync: class helm-files-in-current-dir-source
helm-source-sync: class helm-imenu-source
helm-type-bookmark: class helm-source
helm-type-bookmark: class helm-type-bookmark
helm-type-bookmark: class helm-source-basic-bookmarks
helm-type-bookmark: class helm-source-filtered-bookmarks
helm-type-buffer: class helm-source
helm-type-buffer: class helm-type-buffer
helm-type-buffer: class helm-source-buffers
helm-type-command: class helm-source
helm-type-command: class helm-type-command
helm-type-command: class helm-M-x-class
helm-type-file: class helm-source
helm-type-file: class helm-type-file
helm-type-file: class helm-files-dired-source
helm-type-file: class helm-mac-spotlight-source
helm-type-file: class helm-browse-project-override-inheritor
helm-type-file: class helm-file-cache
helm-type-file: class helm-recentf-source
helm-type-file: class helm-files-in-current-dir-source
helm-type-file: class helm-locate-override-inheritor
helm-type-function: class helm-source
helm-type-function: class helm-type-function
helm-type-timers: class helm-source
helm-type-timers: class helm-type-timers
helm-type-timers: class helm-absolute-time-timers-class
helm-type-timers: class helm-idle-time-timers-class

Jump to:   H