All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
3 shared_examples_for "vim" do
5 before(:each) { vim.normal 'gg"_dG' } # clear buffer
7 describe "when using the indent plugin" do
8 it "sets the indentexpr and indentkeys options" do
9 vim.command("set indentexpr?").should include "GetPythonPEPIndent("
10 vim.command("set indentkeys?").should include "=elif"
13 it "sets autoindent and expandtab" do
14 vim.command("set autoindent?").should match(/\s*autoindent/)
15 vim.command("set expandtab?").should match(/\s*expandtab/)
19 describe "when entering the first line" do
20 before { vim.feedkeys 'ipass' }
22 it "does not indent" do
23 proposed_indent.should == 0
27 it "does not indent when using '=='" do
33 describe "when after a '(' that is at the end of its line" do
34 before { vim.feedkeys 'itest(\<CR>' }
36 it "indents by one level" do
37 proposed_indent.should == shiftwidth
38 vim.feedkeys 'something'
39 indent.should == shiftwidth
41 indent.should == shiftwidth
44 it "puts the closing parenthesis at the same level" do
50 describe "when after an '(' that is followed by something" do
51 before { vim.feedkeys 'itest(something,\<CR>' }
53 it "lines up on following lines" do
55 vim.feedkeys 'more,\<CR>'
59 it "lines up the closing parenthesis" do
64 it "does not touch the closing parenthesis if it is already indented further" do
70 describe "when '#' is contained in a string that is followed by a colon" do
71 it "indents by one level" do
72 vim.feedkeys 'iif "some#thing" == "test":#test\<CR>pass'
73 indent.should == shiftwidth
77 describe "when '#' is not contained in a string and is followed by a colon" do
78 it "does not indent" do
79 vim.feedkeys 'iif "some#thing" == "test"#:test\<CR>'
84 describe "when using simple control structures" do
85 it "indents shiftwidth spaces" do
86 vim.feedkeys 'iwhile True:\<CR>pass'
87 indent.should == shiftwidth
91 describe "when a line breaks with a manual '\\'" do
92 it "indents shiftwidth spaces on normal line" do
93 vim.feedkeys 'ivalue = test + \\\\\<CR>'
94 indent.should == shiftwidth
97 it "indents 2x shiftwidth spaces for control structures" do
98 vim.feedkeys 'iif somevalue == xyz and \\\\\<CR>'
99 indent.should == shiftwidth * 2
102 it "indents relative to line above" do
103 vim.feedkeys 'i\<TAB>value = test + \\\\\<CR>'
104 indent.should == shiftwidth * 2
108 describe "when current line is dedented compared to previous line" do
109 before { vim.feedkeys 'i\<TAB>\<TAB>if x:\<CR>return True\<CR>\<ESC>' }
110 it "and current line has a valid indentation (Part 1)" do
111 vim.feedkeys '0i\<TAB>if y:'
112 proposed_indent.should == -1
115 it "and current line has a valid indentation (Part 2)" do
116 vim.feedkeys '0i\<TAB>\<TAB>if y:'
117 proposed_indent.should == -1
120 it "and current line has an invalid indentation" do
121 vim.feedkeys 'i while True:\<CR>'
122 indent.should == previous_indent + shiftwidth
127 @shiftwidth ||= vim.echo("exists('*shiftwidth') ? shiftwidth() : &sw").to_i
130 @tabstop ||= vim.echo("&tabstop").to_i
133 vim.echo("indent('.')").to_i
136 pline = vim.echo("line('.')").to_i - 1
137 vim.echo("indent('#{pline}')").to_i
140 line = vim.echo("line('.')")
141 col = vim.echo("col('.')")
142 indent_value = vim.echo("GetPythonPEPIndent(line('.'))").to_i
143 vim.command("call cursor(#{line}, #{col})")
148 describe "vim when using width of 4" do
150 vim.command("set sw=4 ts=4 sts=4 et")
153 it_behaves_like "vim"
156 describe "vim when using width of 8" do
158 vim.command("set sw=8 ts=8 sts=8 et")
161 it_behaves_like "vim"