Skip to content

Commit

Permalink
put editing commands in a new category
Browse files Browse the repository at this point in the history
  • Loading branch information
doy committed Aug 28, 2016
1 parent d40aa82 commit 2bcbea1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions vimfx/config.js
Expand Up @@ -100,7 +100,13 @@ vimfx.addCommand({
});
vimfx.set('custom.mode.normal.focus_unhighlighted_location_bar', 'O');

let categories = vimfx.get('categories');
categories.insert = {
name: 'Editing',
order: categories.misc.order - 1,
};
let lineEditingBinding = (opts) => {
opts.category = 'insert';
vimfx.addCommand(
opts,
({vim}) => {
Expand Down

0 comments on commit 2bcbea1

Please sign in to comment.