We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3675514 commit 0554b31Copy full SHA for 0554b31
README.md
@@ -0,0 +1,13 @@
1
+# vim-strip-trailing-whitespace
2
+
3
+
4
+Vim plugin that removes trailing whitespace
5
+ * **from modified lines:** Should not introduce extraneous changes into the diff, even when editing faulty files.
6
7
+ For fixing up the whole file the command `:StripTrailingWhitespace` is provided.
8
+ * **on save:** Lines changing under you feet breaks any flow and is a compatibility hazard.
9
10
+Achieved by maintaining a set of all edited lines with trailing whitespace,
11
+backed by a Splay tree where children store line number offsets.
12
13
+*Vim support: requires Vim 8.2+*
0 commit comments