sheoak / vim-unimpaired-extras

Extras plugins mappings for vim-unimpaired

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

vim-unimpaired-extras

This plugin just add extras mapping to the existing one from vim-unimpaired. It only focuses on plugin mappings. If the plugin is not installed, then it's just ignored.

List of plugins / mappings:

Plugin mappings
Git Gutter [og ]og yog enable/disable/toggle Git Gutter Highlight
Grammarous [g ]g go to next/previous error
vim-table-mode [ot ]ot yot enable/disable/toggle table mode
vim-mkdp [om ]om yom enable/disable/toggle Markdown preview
deoplete [o<tab> ]o<tab> yo<tab> enable/disable/toggle auto-completion_
ALE [oa ]oa yoa enable/disable/toggle ALE checking
Goyo yoy toggle Goyo
Denite [o. ]o. enable/disable hidden files for file/rec source

Configure denite

You can configure the command use to toggle hidden files for Denite:

if (executable('ag'))
    " denite command parameter when showing or not hidden files
    let g:unimpaired_extra_denite_cmd_hidden = ['ag', 
      \ '--follow', '--nocolor', '--nogroup', '--hidden', '-g', '']
    let g:unimpaired_extra_denite_cmd = ['ag',
      \ '--follow', '--nocolor', '--nogroup', '-g', '']
endif

About

Extras plugins mappings for vim-unimpaired


Languages

Language:Vim Script 100.0%