@@ -593,7 +593,7 @@ When possible, instead of `CTRL + C`, prefix `<Leader>o` is used.
593593To disable all mappings, just pass `disable_all = true` to mappings settings:
594594>
595595 require('orgmode').setup({
596- org_agenda_file = {'~/Dropbox/org/*', '~/my-orgs/**/*'},
596+ org_agenda_files = {'~/Dropbox/org/*', '~/my-orgs/**/*'},
597597 org_default_notes_file = '~/Dropbox/org/refile.org',
598598 mappings = {
599599 disable_all = true
@@ -620,7 +620,7 @@ Opens up capture prompt.
620620These live under `mappings.global` and can be overridden like this:
621621>
622622 require('orgmode').setup({
623- org_agenda_file = {'~/Dropbox/org/*', '~/my-orgs/**/*'},
623+ org_agenda_files = {'~/Dropbox/org/*', '~/my-orgs/**/*'},
624624 org_default_notes_file = '~/Dropbox/org/refile.org',
625625 mappings = {
626626 global = {
@@ -634,7 +634,7 @@ These live under `mappings.global` and can be overridden like this:
634634If you want to use multiple mappings for same thing, pass array of mappings:
635635>
636636 require('orgmode').setup({
637- org_agenda_file = {'~/Dropbox/org/*', '~/my-orgs/**/*'},
637+ org_agenda_files = {'~/Dropbox/org/*', '~/my-orgs/**/*'},
638638 org_default_notes_file = '~/Dropbox/org/refile.org',
639639 mappings = {
640640 global = {
@@ -798,7 +798,7 @@ Show help popup with mappings
798798These mappings live under `mappings.agenda`, and can be changed like this:
799799>
800800 require('orgmode').setup({
801- org_agenda_file = {'~/Dropbox/org/*', '~/my-orgs/**/*'},
801+ org_agenda_files = {'~/Dropbox/org/*', '~/my-orgs/**/*'},
802802 org_default_notes_file = '~/Dropbox/org/refile.org',
803803 mappings = {
804804 agenda = {
@@ -837,7 +837,7 @@ Show help popup with mappings
837837These mappings live under `mappings.capture`, and can be changed like this:
838838>
839839 require('orgmode').setup({
840- org_agenda_file = {'~/Dropbox/org/*', '~/my-orgs/**/*'},
840+ org_agenda_files = {'~/Dropbox/org/*', '~/my-orgs/**/*'},
841841 org_default_notes_file = '~/Dropbox/org/refile.org',
842842 mappings = {
843843 capture = {
@@ -1112,7 +1112,7 @@ Show help popup with mappings
11121112These mappings live under `mappings.org`, and can be changed like this:
11131113>
11141114 require('orgmode').setup({
1115- org_agenda_file = {'~/Dropbox/org/*', '~/my-orgs/**/*'},
1115+ org_agenda_files = {'~/Dropbox/org/*', '~/my-orgs/**/*'},
11161116 org_default_notes_file = '~/Dropbox/org/refile.org',
11171117 mappings = {
11181118 org = {
@@ -1194,7 +1194,7 @@ select around everything from first level subtree to the current subtree.
11941194These mappings live under `mappings.text_objects`, and can be changed like this:
11951195>
11961196 require('orgmode').setup({
1197- org_agenda_file = {'~/Dropbox/org/*', '~/my-orgs/**/*'},
1197+ org_agenda_files = {'~/Dropbox/org/*', '~/my-orgs/**/*'},
11981198 org_default_notes_file = '~/Dropbox/org/refile.org',
11991199 mappings = {
12001200 text_objects = {
0 commit comments