summary refs log tree commit diff
path: root/pkgs/development/tools/misc/ctags
diff options
context:
space:
mode:
authorMarc Weber <marco-oweber@gmx.de>2009-05-06 16:06:49 +0000
committerMarc Weber <marco-oweber@gmx.de>2009-05-06 16:06:49 +0000
commit5d9d28fb1f3f763fc8c3d68bbedbc92211a2ee2a (patch)
tree1fcca936dd84a9c54e8d235bc15124d412741253 /pkgs/development/tools/misc/ctags
parent3cf455286f12875df10baa2f57de946a50a012f5 (diff)
downloadnixpkgs-5d9d28fb1f3f763fc8c3d68bbedbc92211a2ee2a.tar
nixpkgs-5d9d28fb1f3f763fc8c3d68bbedbc92211a2ee2a.tar.gz
nixpkgs-5d9d28fb1f3f763fc8c3d68bbedbc92211a2ee2a.tar.bz2
nixpkgs-5d9d28fb1f3f763fc8c3d68bbedbc92211a2ee2a.tar.lz
nixpkgs-5d9d28fb1f3f763fc8c3d68bbedbc92211a2ee2a.tar.xz
nixpkgs-5d9d28fb1f3f763fc8c3d68bbedbc92211a2ee2a.tar.zst
nixpkgs-5d9d28fb1f3f763fc8c3d68bbedbc92211a2ee2a.zip
mend
svn path=/nixpkgs/trunk/; revision=15477
Diffstat (limited to 'pkgs/development/tools/misc/ctags')
-rw-r--r--pkgs/development/tools/misc/ctags/wrapped.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/misc/ctags/wrapped.nix b/pkgs/development/tools/misc/ctags/wrapped.nix
index 15bf1e9810a..aac995c276d 100644
--- a/pkgs/development/tools/misc/ctags/wrapped.nix
+++ b/pkgs/development/tools/misc/ctags/wrapped.nix
@@ -28,13 +28,13 @@
     "--exclude=\.svn"
     "--exclude=\.hg"
     "--exclude=\.git"
-    "--exclude=\_darcs" 
+    "--exclude=\_darcs"
     "--sort=yes"
   ];
 
   # actionscript
   asLang = [
-    "--langdef=ActionScript"  
+    "--langdef=ActionScript"
     "--langmap=ActionScript:.as"
     "--regex-ActionScript=/function[ \\t]+([A-Za-z0-9_]+)[ \\t]*\\(/\1/f,function,functions/"
     "--regex-ActionScript=/function[ \\t]+(set|get)[ \\t]+([A-Za-z0-9_]+)[ \\t]*\\(/\2/p,property,properties/"
@@ -62,7 +62,7 @@
 
   # find foo in "foo =", don't think we can do a lot better
   nixLang = [
-    "--langdef=NIX"  
+    "--langdef=NIX"
     "--langmap=NIX:.nix"
     "--regex-NIX=/\([^ \\t*]*\)[ \\t]*=/\\1/f/"
   ];