Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/walkdir.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2019-05-01 20:32:43 +0300
committerAndrew Gallant <jamslam@gmail.com>2019-05-01 20:32:43 +0300
commitb8bdc069fd79bf68bb54ddabe28210704c076237 (patch)
tree08d99a8fabc84c3ff41de43acb35b6e4b5a03e5d
parent4c4fdb2abd5f86be2f35a4f61df3f1a98e580867 (diff)
cleanup: remove unused files from the old days
-rw-r--r--Cargo.toml2
-rw-r--r--Makefile14
-rw-r--r--ctags.rust11
-rw-r--r--session.vim1
4 files changed, 1 insertions, 27 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 89e1bd0..2db342b 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -10,7 +10,7 @@ readme = "README.md"
keywords = ["directory", "recursive", "walk", "iterator"]
categories = ["filesystem"]
license = "Unlicense/MIT"
-exclude = ["/ci/*", "/.travis.yml", "/Makefile", "/appveyor.yml", "/ctags.rust", "/session.vim"]
+exclude = ["/ci/*", "/.travis.yml", "/appveyor.yml"]
[badges]
travis-ci = { repository = "BurntSushi/walkdir" }
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 9f956f4..0000000
--- a/Makefile
+++ /dev/null
@@ -1,14 +0,0 @@
-all:
- echo Nothing to do...
-
-ctags:
- ctags --recurse --options=ctags.rust --languages=Rust
-
-docs:
- cargo doc
- in-dir ./target/doc fix-perms
- rscp ./target/doc/* gopher:~/www/burntsushi.net/rustdoc/
-
-push:
- git push origin master
- git push github master
diff --git a/ctags.rust b/ctags.rust
deleted file mode 100644
index b42edf7..0000000
--- a/ctags.rust
+++ /dev/null
@@ -1,11 +0,0 @@
---langdef=Rust
---langmap=Rust:.rs
---regex-Rust=/^[ \t]*(#\[[^\]]\][ \t]*)*(pub[ \t]+)?(extern[ \t]+)?("[^"]+"[ \t]+)?(unsafe[ \t]+)?fn[ \t]+([a-zA-Z0-9_]+)/\6/f,functions,function definitions/
---regex-Rust=/^[ \t]*(pub[ \t]+)?type[ \t]+([a-zA-Z0-9_]+)/\2/T,types,type definitions/
---regex-Rust=/^[ \t]*(pub[ \t]+)?enum[ \t]+([a-zA-Z0-9_]+)/\2/g,enum,enumeration names/
---regex-Rust=/^[ \t]*(pub[ \t]+)?struct[ \t]+([a-zA-Z0-9_]+)/\2/s,structure names/
---regex-Rust=/^[ \t]*(pub[ \t]+)?mod[ \t]+([a-zA-Z0-9_]+)/\2/m,modules,module names/
---regex-Rust=/^[ \t]*(pub[ \t]+)?static[ \t]+([a-zA-Z0-9_]+)/\2/c,consts,static constants/
---regex-Rust=/^[ \t]*(pub[ \t]+)?trait[ \t]+([a-zA-Z0-9_]+)/\2/t,traits,traits/
---regex-Rust=/^[ \t]*(pub[ \t]+)?impl([ \t\n]+<.*>)?[ \t]+([a-zA-Z0-9_]+)/\3/i,impls,trait implementations/
---regex-Rust=/^[ \t]*macro_rules![ \t]+([a-zA-Z0-9_]+)/\1/d,macros,macro definitions/
diff --git a/session.vim b/session.vim
deleted file mode 100644
index 213c956..0000000
--- a/session.vim
+++ /dev/null
@@ -1 +0,0 @@
-au BufWritePost *.rs silent!make ctags > /dev/null 2>&1