jceb / vim-orgmode

Text outlining and task management for Vim based on Emacs' Org-Mode
http://www.vim.org/scripts/script.php?script_id=3642
Other
3.1k stars 266 forks source link

Keybindings not available, but syntax highlighting works. #361

Closed erikc96 closed 3 years ago

erikc96 commented 3 years ago

Syntax highlighting is working, so I know the plugin is being loaded.

I have this line in my .vimrc:

let maplocalleader = ","

Here's an example org file I'm trying to edit.

test.org

#+TITLE:     yo
#+AUTHOR:    Erik

* *yo*

I've gone through about all the keybindings in the documentation, and none of them have any effect.

I don't have any plugins or other settings in my vimrc that would conflict with this plugin, and I've tried a fresh vim installation with only this plugin and have continued to not have any luck.

Facts:

Vim Version

8.1.2292

Plugins Installed:

NrrwRgn
calendar.vim
tagbar
utl.vim
vim-SyntaxRange
vim-orgmode
vim-repeat
vim-speeddating

.vimrc

packloadall
silent! helptags ALL
nnoremap <SPACE> <Nop>
let mapleader = " "
let maplocalleader = ","

 filetype off
 set hidden
 syntax enable
 set nocompatible
 filetype on
 set fileformat=unix
 set autoindent
 set encoding=utf-8
 set incsearch
erikc96 commented 3 years ago

I installed it through this process:

mkdir -p ~/.vim/pack/git-plugins/start cd ~/.vim/pack/git-plugins/start git clone https://github.com/jceb/vim-orgmode < Then, add this to your ~/.vimrc:

packloadall silent! helptags ALL <