From: Hynek Schlawack Date: Tue, 24 Sep 2013 08:02:24 +0000 (+0200) Subject: Add Clay to AUTHORS and tweak some comments X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/86f422a8c1a50f4e384b92a89db8916b6e1333ff?ds=inline;hp=-c Add Clay to AUTHORS and tweak some comments --- 86f422a8c1a50f4e384b92a89db8916b6e1333ff diff --git a/AUTHORS.rst b/AUTHORS.rst index 7333ee4..e12a0c9 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -6,6 +6,7 @@ Credits It is currently maintained by Hynek Schlawack with the generous help of the following contributors: - 0player +- Clay Gerrard - Johann Klähn - Joseph Irwin - Steve Losh diff --git a/indent/python.vim b/indent/python.vim index 69ce187..2c30547 100644 --- a/indent/python.vim +++ b/indent/python.vim @@ -170,7 +170,7 @@ function! GetPythonPEPIndent(lnum) return maybe_indent + &sw else " control structure not found - return maybe_indent + return maybe_indent endif endif diff --git a/spec/indent/indent_spec.rb b/spec/indent/indent_spec.rb index 6f8af74..40269fc 100644 --- a/spec/indent/indent_spec.rb +++ b/spec/indent/indent_spec.rb @@ -68,19 +68,19 @@ describe "vim" do end describe "when using simple control structures" do - it "indents four spaces" do + it "indents shiftwidth spaces" do vim.feedkeys 'iwhile True:\pass' indent.should == shiftwidth end end describe "when a line breaks with a manual '\\'" do - it "indents 4 spaces on normal line" do + it "indents shiftwidth spaces on normal line" do vim.feedkeys 'ivalue = test + \\\\\' indent.should == shiftwidth end - it "indents 8 spaces for control structures" do + it "indents 2x shiftwidth spaces for control structures" do vim.feedkeys 'iif somevalue == xyz and \\\\\' indent.should == shiftwidth * 2 end