123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- name: editor-open
- version: 0.3.0.0
- synopsis: Open the user's $EDITOR for text input.
- description:
- You know when you run @git commit@, and an editor pops open so you can enter a
- commit message? This is a Haskell library that does that.
- .
- This library isn't very portable. It relies on the @$EDITOR@ environment
- variable. The concept only exists on *nix systems.
- homepage: https://github.com/pharpend/editor-open
- license: Apache-2.0
- license-file: LICENSE
- author: Peter Harpending
- maintainer: peter@harpending.org
- copyright: Copyright 2015 Peter Harpending
- category: Text
- build-type: Simple
- cabal-version: >=1.10
- bug-reports: https://github.com/pharpend/editor-open/issues/new
- extra-source-files:
- README.md
- data-files:
- res/*.json
- res/*.yaml
- library
- -- other-modules:
- -- other-extensions:
- hs-source-dirs: src
- default-language: Haskell2010
- default-extensions:
- LambdaCase
- MultiWayIf
- OverloadedStrings
- RankNTypes
- build-depends:
- base ==4.8.*
- , bytestring
- , conduit >=1.2.3 && <1.3
- , conduit-extra
- , directory
- , process >=1.2
- , resourcet
- , temporary
- , transformers
- , unix
- exposed-modules:
- Text.Editor
- executable editor-open-test_yaml_file
- hs-source-dirs: tests/
- default-language: Haskell2010
- build-depends:
- base ==4.8.*
- , bytestring
- , editor-open
- main-is: test_yaml_file.hs
- -- other-modules:
- -- other-extensions:
- source-repository head
- type: git
- location: https://github.com/pharpend/editor-open.git
- source-repository this
- type: git
- location: https://github.com/pharpend/editor-open.git
- tag: 0.3.0.0
|