aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorThomas Buckley-Houston2017-06-25 14:29:47 +0000
committerThomas Buckley-Houston2017-06-25 14:31:46 +0000
commit70939c41f37173873096ec7cd5ad45e32f84b0cb (patch)
tree81526ab3243b9377cc77e863f0e85ce65406eb76 /README.md
parentd29f111ba8ebc1fdeafbe04ab01aab99c8e0e1ca (diff)
Actually compare `has('timers')` to something :/
This properly deals with versions of VIm that don't support timers. So that older versions of Vim still work but run into the bug where some panes get insertmode inappropriately set. Touches #4
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/README.md b/README.md
index e8d279f..08a851a 100644
--- a/README.md
+++ b/README.md
@@ -14,6 +14,8 @@ Use your favourite plugin manager, eg, for vim-plug;
`Plug 'tombh/novim-mode'`
+Note that Vim before v7.5 and Neovim before v0.1.5 have a bug where Insert Mode is inappropriately set for some panes.
+
## Usage
Most keybindings should work as you might expect from, say Atom or Sublime Text; `SHIFT+ARROW` to select and `CTRL+C/V` to copy/paste. But don't expect Vim to completely bend to your will, it is still useful to familiarise yourself with some of Vim's basic concepts. For instance you may on occasion find yourself stuck in a particular Vim mode, like when pasting text without 'Paste Mode' then inserted text can trigger random mappings. In such case `CTRL+Q` may not kill Vim and you'll need to find a way of getting to Normal Mode and typing `:q` then `<RETURN>`. Such is life with Vim, this plugin is highly unlikely to ever change that. (BTW conventional pasting is on by default, but to exit an errant 'Paste Mode' use `:set nopaste`.)