@@ -593,7 +593,7 @@ When possible, instead of `CTRL + C`, prefix `<Leader>o` is used.
593
593
To disable all mappings, just pass `disable_all = true` to mappings settings:
594
594
>
595
595
require('orgmode').setup({
596
- org_agenda_file = {'~/Dropbox/org/*', '~/my-orgs/**/*'},
596
+ org_agenda_files = {'~/Dropbox/org/*', '~/my-orgs/**/*'},
597
597
org_default_notes_file = '~/Dropbox/org/refile.org',
598
598
mappings = {
599
599
disable_all = true
@@ -620,7 +620,7 @@ Opens up capture prompt.
620
620
These live under `mappings.global` and can be overridden like this:
621
621
>
622
622
require('orgmode').setup({
623
- org_agenda_file = {'~/Dropbox/org/*', '~/my-orgs/**/*'},
623
+ org_agenda_files = {'~/Dropbox/org/*', '~/my-orgs/**/*'},
624
624
org_default_notes_file = '~/Dropbox/org/refile.org',
625
625
mappings = {
626
626
global = {
@@ -634,7 +634,7 @@ These live under `mappings.global` and can be overridden like this:
634
634
If you want to use multiple mappings for same thing, pass array of mappings:
635
635
>
636
636
require('orgmode').setup({
637
- org_agenda_file = {'~/Dropbox/org/*', '~/my-orgs/**/*'},
637
+ org_agenda_files = {'~/Dropbox/org/*', '~/my-orgs/**/*'},
638
638
org_default_notes_file = '~/Dropbox/org/refile.org',
639
639
mappings = {
640
640
global = {
@@ -798,7 +798,7 @@ Show help popup with mappings
798
798
These mappings live under `mappings.agenda`, and can be changed like this:
799
799
>
800
800
require('orgmode').setup({
801
- org_agenda_file = {'~/Dropbox/org/*', '~/my-orgs/**/*'},
801
+ org_agenda_files = {'~/Dropbox/org/*', '~/my-orgs/**/*'},
802
802
org_default_notes_file = '~/Dropbox/org/refile.org',
803
803
mappings = {
804
804
agenda = {
@@ -837,7 +837,7 @@ Show help popup with mappings
837
837
These mappings live under `mappings.capture`, and can be changed like this:
838
838
>
839
839
require('orgmode').setup({
840
- org_agenda_file = {'~/Dropbox/org/*', '~/my-orgs/**/*'},
840
+ org_agenda_files = {'~/Dropbox/org/*', '~/my-orgs/**/*'},
841
841
org_default_notes_file = '~/Dropbox/org/refile.org',
842
842
mappings = {
843
843
capture = {
@@ -1112,7 +1112,7 @@ Show help popup with mappings
1112
1112
These mappings live under `mappings.org`, and can be changed like this:
1113
1113
>
1114
1114
require('orgmode').setup({
1115
- org_agenda_file = {'~/Dropbox/org/*', '~/my-orgs/**/*'},
1115
+ org_agenda_files = {'~/Dropbox/org/*', '~/my-orgs/**/*'},
1116
1116
org_default_notes_file = '~/Dropbox/org/refile.org',
1117
1117
mappings = {
1118
1118
org = {
@@ -1194,7 +1194,7 @@ select around everything from first level subtree to the current subtree.
1194
1194
These mappings live under `mappings.text_objects`, and can be changed like this:
1195
1195
>
1196
1196
require('orgmode').setup({
1197
- org_agenda_file = {'~/Dropbox/org/*', '~/my-orgs/**/*'},
1197
+ org_agenda_files = {'~/Dropbox/org/*', '~/my-orgs/**/*'},
1198
1198
org_default_notes_file = '~/Dropbox/org/refile.org',
1199
1199
mappings = {
1200
1200
text_objects = {
0 commit comments