Skip to content

Commit 0777f56

Browse files
authored
Merge pull request #261 from tsvibt/master
correct localleader
2 parents 50464f2 + eb5a6c1 commit 0777f56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ftplugin/orgmode/plugins/EditStructure.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ def register(self):
364364
Plug(u'OrgNewHeadingBelowNormal', u':silent! %s ORGMODE.plugins[u"EditStructure"].new_heading(below=True)<CR>' % VIM_PY_CALL)))
365365
self.menu + ActionEntry(u'New Heading &below', self.keybindings[-1])
366366
self.keybindings.append(Keybinding(u'<localleader>hh', u'<Plug>OrgNewHeadingBelowNormal', mode=MODE_NORMAL))
367-
self.keybindings.append(Keybinding(u'<leader><CR>', u'<Plug>OrgNewHeadingBelowNormal', mode=MODE_NORMAL))
367+
self.keybindings.append(Keybinding(u'<localleader><CR>', u'<Plug>OrgNewHeadingBelowNormal', mode=MODE_NORMAL))
368368

369369
self.keybindings.append(Keybinding(u'<C-CR>', Plug(u'OrgNewHeadingBelowAfterChildrenNormal', u':silent! %s ORGMODE.plugins[u"EditStructure"].new_heading(below=True, end_of_last_child=True)<CR>' % VIM_PY_CALL)))
370370
self.menu + ActionEntry(u'New Heading below, after &children', self.keybindings[-1])

0 commit comments

Comments
 (0)