summaryrefslogtreecommitdiffstats
path: root/HACKING
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2014-01-23 00:06:11 +0100
committerAllan McRae <allan@archlinux.org>2014-01-28 11:19:25 +0100
commitcd2370754ae6893e6df4e835eeb819f827eaee4a (patch)
treeb412e2908d83c1ad81928fb8b4d80c39341a6292 /HACKING
parent83e14aeebde5edcf98b52b37cc4aa156a4f09608 (diff)
downloadpacman-cd2370754ae6893e6df4e835eeb819f827eaee4a.tar.gz
pacman-cd2370754ae6893e6df4e835eeb819f827eaee4a.tar.xz
Remove ts and sw from vim modeline when noet is set
Forcing vim users to view files with a tabstop of 2 seems really unnecessary when noet is set. I find it much easier to read code with ts=4 and I dislike having to override the modeline by hand. Command run: find . -type f -exec sed -i '/vim.* noet/s# ts=2 sw=2##' {} + Signed-off-by: Florian Pritz <bluewind@xinu.at> Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'HACKING')
-rw-r--r--HACKING4
1 files changed, 2 insertions, 2 deletions
diff --git a/HACKING b/HACKING
index 13446440..cc4983f6 100644
--- a/HACKING
+++ b/HACKING
@@ -14,7 +14,7 @@ Coding Style
+
[source,C]
-------------------------------------------
-/* vim: set ts=2 sw=2 noet: */
+/* vim: set noet: */
-------------------------------------------
2. When opening new blocks such as 'while', 'if', or 'for', leave the opening
@@ -202,5 +202,5 @@ For example, to run valgrind:
valgrind --leak-check=full -- src/pacman/.libs/lt-pacman -Syu
/////
-vim:set ts=4 sw=4 syntax=asciidoc noet spell spelllang=en_us:
+vim:set syntax=asciidoc noet spell spelllang=en_us:
/////