]> git.madduck.net Git - etc/vim.git/blobdiff - spec/indent/bytes_spec.rb

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

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.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Fix handling of pythonBytesEscape from vim-python/python-syntax (#115)
[etc/vim.git] / spec / indent / bytes_spec.rb
index 260a2ab619d34c2c7d48ebc8e87b4797b8908ac7..3d6744e8f299b73b0f16560bd48a9f1b4a98da9e 100644 (file)
@@ -3,6 +3,7 @@ require "spec_helper"
 describe "handles byte strings" do
   before(:all) {
       vim.command 'syn region pythonBytes start=+[bB]"+ skip=+\\\\\|\\"\|\\$+ excludenl end=+"+ end=+$+ keepend contains=pythonBytesError,pythonBytesContent,@Spell'
+      vim.command "syn match pythonBytesEscape       '\\\\$'"
   }
 
   before(:each) {
@@ -23,4 +24,13 @@ describe "handles byte strings" do
     vim.feedkeys 'o'
     indent.should == 0
   end
+
+  it "it indents backslash continuation correctly" do
+    vim.feedkeys 'iwith foo, \<Bslash>\<Esc>'
+    vim.echo('getline(".")').should == "with foo, \\"
+    vim.echo('map(synstack(line("."), col(".")), "synIDattr(v:val, \"name\")")'
+            ).should == "['pythonBytesEscape']"
+    vim.feedkeys 'o'
+    indent.should == 8
+  end
 end