update documentation + spacing

ignore-filetypes
spike 2 years ago
parent 95461c083e
commit 9436e23576

@ -119,9 +119,15 @@ default DelayTrain mappings are included below:
['nv'] = {'h', 'j', 'k', 'l'},
['nvi'] = {'<Left>', '<Down>', '<Up>', '<Right>'},
},
ignore_filestypes = {}, -- Example: set to {"help", "NvimTr*"} to
-- disable the plugin for help and NvimTree
}
```
You can define a list of filetypes that will be ignored by delaytrain using
`ignore_filestypes`. The option accepts a list of strings or patterns.
Tip: you can find the filetype for the current buffer using the command `:set ft?`
### Mappings
The keys option allows you to delay different keypresses in different modes.

@ -45,8 +45,8 @@ following configuration (default settings included):
['nv'] = {'h', 'j', 'k', 'l'},
['nvi'] = {'<Left>', '<Down>', '<Up>', '<Right>'},
},
ignore_filestypes = {}, -- Example: set to {"help", "NvimTree"} to
-- disable the plugin for help and NvimTree
ignore_filestypes = {}, -- Example: set to {"help", "NvimTr*"} to
-- disable the plugin for help and NvimTree
}
<
Keep in mind that the `delay_ms` timer starts on the FIRST keypress and not the
@ -63,6 +63,10 @@ the default settings, if you hit j and then hit k after 500ms, both keypresses
will work. If you wait another 200ms and hit j again, the keypress will not
work.
You can define a list of filetypes that will be ignored by delaytrain using
`ignore_filestypes`. The option accepts a list of strings or patterns. Tip:
you can find the filetype for the current buffer using the command `:set ft?`
------------------------------------------------------------------------------
MAPPINGS *delaytrain-mappings*

Loading…
Cancel
Save