wl-pprint-terminfo 3.0.1 → 3.3
raw patch · 6 files changed
+79/−5 lines, 6 filesdep +natsdep ~semigroupsdep ~wl-pprint-extras
Dependencies added: nats
Dependency ranges changed: semigroups, wl-pprint-extras
Files
- .ghci +1/−0
- .gitignore +18/−0
- .vim.custom +31/−0
- CHANGELOG.markdown +4/−0
- README.markdown +13/−0
- wl-pprint-terminfo.cabal +12/−5
+ .ghci view
@@ -0,0 +1,1 @@+:set -isrc -idist/build/autogen -optP-include -optPdist/build/autogen/cabal_macros.h
+ .gitignore view
@@ -0,0 +1,18 @@+dist+docs+wiki+TAGS+tags+wip+.DS_Store+.*.swp+.*.swo+*.o+*.hi+*~+*#+autom4te.cache+cbits/config.h+config.log+config.status+wl-pprint-terminfo.buildinfo
+ .vim.custom view
@@ -0,0 +1,31 @@+" Add the following to your .vimrc to automatically load this on startup++" if filereadable(".vim.custom")+" so .vim.custom+" endif++function StripTrailingWhitespace()+ let myline=line(".")+ let mycolumn = col(".")+ silent %s/ *$//+ call cursor(myline, mycolumn)+endfunction++" enable syntax highlighting+syntax on++" search for the tags file anywhere between here and /+set tags=TAGS;/++" highlight tabs and trailing spaces+set listchars=tab:‗‗,trail:‗+set list++" f2 runs hasktags+map <F2> :exec ":!hasktags -x -c --ignore src"<CR><CR>++" strip trailing whitespace before saving+" au BufWritePre *.hs,*.markdown silent! cal StripTrailingWhitespace()++" rebuild hasktags after saving+au BufWritePost *.hs silent! :exec ":!hasktags -x -c --ignore src"
+ CHANGELOG.markdown view
@@ -0,0 +1,4 @@+3.3+---+* semigroups dependency bump+* matched version to wl-pprint-extras
+ README.markdown view
@@ -0,0 +1,13 @@+wl-pprint-terminfo+==================++This package adds support for term-info effects in the [`wl-pprint-extras`](/ekmett/wl-pprint-extras) free monad.++Contact Information+-------------------++Contributions and bug reports are welcome!++Please feel free to contact me through github or on the #haskell IRC channel on irc.freenode.net.++-Edward Kmett
wl-pprint-terminfo.cabal view
@@ -1,6 +1,6 @@ name: wl-pprint-terminfo category: Control, Monads, Text-version: 3.0.1+version: 3.3 cabal-version: >= 1.6 license: BSD3 license-file: LICENSE@@ -19,7 +19,13 @@ cbits/config.h.in configure.ac configure-extra-source-files: .travis.yml+extra-source-files:+ .travis.yml+ .ghci+ .gitignore+ .vim.custom+ CHANGELOG.markdown+ README.markdown source-repository head type: git@@ -38,10 +44,11 @@ build-depends: base == 4.*,- semigroups >= 0.8.3.1 && < 0.9,- containers >= 0.4 && < 0.6,- wl-pprint-extras >= 3.0 && < 3.3, bytestring >= 0.9.1 && < 0.11,+ containers >= 0.4 && < 0.6,+ nats >= 0.1,+ semigroups >= 0.9,+ wl-pprint-extras >= 3.3, terminfo >= 0.3.2 && < 0.4, transformers >= 0.2 && < 0.4