From fd1e48276203ed0b4b52322b100fa222002ba6ab Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 9 May 2019 11:39:32 +1200 Subject: Switch to two-spacing --- README.md | 2 +- doc/copy_linebreak.txt | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a36ec6a..27f138f 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ emulators or screen/tmux. 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/copy_linebreak.txt b/doc/copy_linebreak.txt index 6b87bd8..754cccb 100644 --- a/doc/copy_linebreak.txt +++ b/doc/copy_linebreak.txt @@ -9,8 +9,8 @@ emulators or screen/tmux. REQUIREMENTS *copy_linebreak-requirements* -This plugin is only available if 'compatible' is not set. It also requires the -|+linebreak| feature. +This plugin is only available if 'compatible' is not set. It also requires +the |+linebreak| feature. MAPPINGS *copy_linebreak-mappings* @@ -24,7 +24,7 @@ Mapping targets provided are: Toggle between the above two states. There are no default key mappings to any of these targets; you should define -them yourself in your |vimrc|. For example: +them yourself in your |vimrc|. For example: > nmap b (CopyLinebreakToggle) < -- cgit v1.2.3 From 16be14399e222e86f0e76c9e3a4882940ddac643 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 9 May 2019 11:40:28 +1200 Subject: Remove unneeded variable scoping --- plugin/copy_linebreak.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/copy_linebreak.vim b/plugin/copy_linebreak.vim index e437e03..8b93c24 100644 --- a/plugin/copy_linebreak.vim +++ b/plugin/copy_linebreak.vim @@ -5,13 +5,13 @@ " Author: Tom Ryder " License: Same as Vim itself " -if exists('g:loaded_copy_linebreak') || &compatible +if exists('loaded_copy_linebreak') || &compatible finish endif if !has('linebreak') || v:version < 600 finish endif -let g:loaded_copy_linebreak = 1 +let loaded_copy_linebreak = 1 " Enable copy-friendly linebreak options function! s:CopyLinebreakEnable() -- cgit v1.2.3 From dce44abfdb9b31f69ed6b6203e1ad40d70f3b8a6 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 9 May 2019 11:40:49 +1200 Subject: Bump VERSION --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index a918a2a..faef31a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.6.0 +0.7.0 -- cgit v1.2.3