]> git.madduck.net Git - etc/vim.git/commitdiff

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)
authorDaniel Hahler <github@thequod.de>
Mon, 17 Sep 2018 11:46:46 +0000 (13:46 +0200)
committerGitHub <noreply@github.com>
Mon, 17 Sep 2018 11:46:46 +0000 (13:46 +0200)
Fixes https://github.com/Vimjas/vim-python-pep8-indent/issues/114

indent/python.vim
spec/indent/bytes_spec.rb

index 8fb5a9b03d8bb0267220bf5b2f7f5592ffa63d42..55b2b1bca6729af7ff2b9d8d791e2c552aef581b 100644 (file)
@@ -61,7 +61,7 @@ let s:stop_statement = '^\s*\(break\|continue\|raise\|return\|pass\)\>'
 " jedi* refers to syntax definitions from jedi-vim for call signatures, which
 " are inserted temporarily into the buffer.
 let s:skip_special_chars = 'synIDattr(synID(line("."), col("."), 0), "name") ' .
-            \ '=~? "\\vstring|comment|pythonbytes|jedi\\S"'
+            \ '=~? "\\vstring|comment|^pythonbytes%(contents)=$|jedi\\S"'
 
 let s:skip_after_opening_paren = 'synIDattr(synID(line("."), col("."), 0), "name") ' .
             \ '=~? "\\vcomment|jedi\\S"'
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