aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-05-10 09:53:55 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-05-10 09:53:55 +1200
commitd88dbd49ef2acff8a6d986de40c6a6aa59288f28 (patch)
treecf5f1007bbb1e2bc4a7a19cdd612b0bb53b7cffe
parentMerge branch 'hotfix/v0.2.1' into develop (diff)
downloadvim-insert-timeout-d88dbd49ef2acff8a6d986de40c6a6aa59288f28.tar.gz
vim-insert-timeout-d88dbd49ef2acff8a6d986de40c6a6aa59288f28.zip
Switch to two-spacing
-rw-r--r--README.md4
-rw-r--r--doc/insert_timeout.txt8
-rw-r--r--plugin/insert_timeout.vim2
3 files changed, 7 insertions, 7 deletions
diff --git a/README.md b/README.md
index d2e5702..fa42f68 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@ insert\_suspend\_hlsearch.vim
=============================
This plugin leaves insert mode automatically if there is no activity for a
-certain number of seconds, with an `'updatetime'` hook. This is just a plugin
+certain number of seconds, with an `'updatetime'` hook. This is just a plugin
packaging of Vim tip #1540:
<http://vim.wikia.com/wiki/To_switch_back_to_normal_mode_automatically_after_inaction>
@@ -12,7 +12,7 @@ Requires Vim 7.0 or later.
License
-------
-Copyright (c) [Tom Ryder][1]. Distributed under the same terms as Vim itself.
+Copyright (c) [Tom Ryder][1]. Distributed under the same terms as Vim itself.
See `:help license`.
[1]: https://sanctum.geek.nz/
diff --git a/doc/insert_timeout.txt b/doc/insert_timeout.txt
index 1922805..7701d5f 100644
--- a/doc/insert_timeout.txt
+++ b/doc/insert_timeout.txt
@@ -3,19 +3,19 @@
DESCRIPTION *insert_timeout*
This plugin leaves insert mode automatically if there is no activity for a
-certain number of seconds, with an 'updatetime' hook. This is just a plugin
+certain number of seconds, with an 'updatetime' hook. This is just a plugin
packaging of Vim tip #1540.
REQUIREMENTS *insert_timeout-requirements*
-This plugin is only available if 'compatible' is not set. It also requires the
-|+autocmd| feature.
+This plugin is only available if 'compatible' is not set. It also requires
+the |+autocmd| feature.
OPTIONS *insert_timeout-options*
*g:insert_timeout_duration*
Set `g:insert_timeout_duration` to the number of milliseconds after which
-insert mode should time out. The default value is 10000 (10 seconds).
+insert mode should time out. The default value is 10000 (10 seconds).
AUTHOR *insert_timeout-author*
diff --git a/plugin/insert_timeout.vim b/plugin/insert_timeout.vim
index 36f63b6..f848d98 100644
--- a/plugin/insert_timeout.vim
+++ b/plugin/insert_timeout.vim
@@ -1,6 +1,6 @@
"
" insert_timeout.vim: Leave insert mode automatically if there is no activity
-" for a certain number of seconds, with an 'updatetime' hook. This is just a
+" for a certain number of seconds, with an 'updatetime' hook. This is just a
" plugin packaging of Vim tip #1540.
"
" Author: Tom Ryder <tom@sanctum.geek.nz>