]> 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:

Put cursor in last line if old position is invalid (#641)
authorSami Salonen <sakki@iki.fi>
Thu, 7 Mar 2019 03:34:17 +0000 (05:34 +0200)
committerJelle Zijlstra <jelle.zijlstra@gmail.com>
Thu, 7 Mar 2019 03:34:17 +0000 (19:34 -0800)
plugin/black.vim

index 34f30c532f006d0ea0f0411a59170c60b3666f16..f0b55b2307fc84312394934b08dfadfe3c7c2a65 100644 (file)
@@ -114,7 +114,10 @@ def Black():
   else:
     cursor = vim.current.window.cursor
     vim.current.buffer[:] = new_buffer_str.split('\n')[:-1]
-    vim.current.window.cursor = cursor
+    try:
+      vim.current.window.cursor = cursor
+    except vim.error:
+      vim.current.window.cursor = (len(vim.current.buffer), 0)
     print(f'Reformatted in {time.time() - start:.4f}s.')
 
 def BlackUpgrade():